WordPress统计评论数量

WordPress使用非插件方式实现统计评论数量,这里用到短代码的方法,在你的WordPress主题 functions.php中增加内容:

function wpb_comment_count() { 
$comments_count = wp_count_comments();
$message =  'There are <strong>'.  $comments_count->approved . '</strong> comments posted by our users.';
 
return $message; 
} 
 
add_shortcode('wpb_total_comments','wpb_comment_count');

然后可以使用短代码 [wpb_total_comments] 来显示。

统计评论数量
统计评论数量

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注