wordpress建站:如何在网站上显示评论总数(Simple Blog Stats)

2024年10月11日 建站教程

在网站上显示评论总数,安装并激活Simple Blog Stats插件。通过调用插件生成的短代码,添加到要显示评论总数的位置。此插件还可用于显示不同统计信息的短代码,例如评论总数,注册用户数,文章数,类别,页数等。

打开主题下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');

本文链接:http://so.lmcjl.com/news/15126/

展开阅读全文