Hi,

Here is the code to display total number of trackback links on the blog:

function tb_count() {
global $wpdb;
$count = “SELECT COUNT(*) FROM $wpdb->comments WHERE comment_type = ‘pingback’”;
echo $wpdb->get_var($count);
}

Now, we can call this function from any where in the blog:

<?php tb_count(); ?>

Thanks,

Shane G.

Popularity: 1%

Related posts:
  1. Code To Display Total Number Of Categories In Wordpress Blog Hi, Here is the code to display total number of...
  2. Code To Display Total Number Of Comments Hi, Here is the code to find out total number...
  3. How To Find List Of Registered User In WordPress Blog? Hello All, In order to find a list of total...
  4. How To Display Most Commented Posts In Wordpress Blog Hi, Please use this code to display the posts that...
  5. Difference Between Pingbacks And Trackbacks In WordPress Blog Hello All, There are few differences between Pingbacks and Trackbacks...

Leave a Reply

You must be logged in to post a comment.