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. Code To Display Average Number Of Comments Per Post In WordPress Hi, Here is the code to display average number of...
  4. Code To Display Top Comments In WordPress Blog Hello All, In order to display top comments in wordpress...
  5. Code To Display Recent Comments In WordPress Blog Hello All, In order to display recently posted comments in...

Leave a Reply

You must be logged in to post a comment.