Hello,
in a loop, i want to show the total number of comments of the posts of the one specific category, how to do that?
i just know the <?php comments_popup_link() ?> to show the total number of comments of a one post.
bye
Hello,
in a loop, i want to show the total number of comments of the posts of the one specific category, how to do that?
i just know the <?php comments_popup_link() ?> to show the total number of comments of a one post.
bye
Re,
i have this:
function mdv_comment_count() {
global $wpdb;
$request = "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'";
echo $wpdb->get_var($request);
}
but the function is the total number of comments in all category.. hum, little help please =p
up =p
This topic has been closed to new replies.