Wordpress users have thousands of themes to choose from. We hunt out the best of the best free and premium themes. You will find best of the best 2 columns, 3 columns, adsense ready, widget ready,
XHTML validated themes. Best themes for Wordpress powered blogs. Download quality and professionally designed Wordpress templates for free at BestWpThemez.com.
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%
This entry was posted
on Saturday, June 27th, 2009 at 5:42 pm and is filed under WordPress KB .
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.