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. Code To Count Total Number Of Post For A Category In WordPress Blog Hi, We can use below mentioned function to display total...
  4. Code To Count Total Number Of Published Post In WordPress Blog Hi, Please use below mentioned code to display total number...
  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.