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]
来显示。