Jun
27

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%

Related posts:
  1. Code To Display Total Number of Trackbacks In Wordpress Blog Hi, Here is the code to display total number of...
  2. Code To Display Total Number Of Categories In Wordpress Blog Hi, Here is the code to display total number of...
  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. Code To Display Average Number Of Comments Per Post In Wordpress Hi, Here is the code to display average number of...

Leave a Reply

You must be logged in to post a comment.