Hi,
Here is the code to find out total number of approved comments on the blog:
<?php
$numcomms = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ’1′”);
if (0 < $numcomms) $numcomms = number_format($numcomms);
?>
Thanks,
Shane G.
Popularity: 1%







