wordpress如何获取网站的评论总数(非插件)

2024年10月12日 建站教程

wordpress建站中,如何利用代码获取网站的评论总数(非插件),下面web建站小编给大家简单介绍一下!​

找到主题下functions.php​文件,新增以下代码:

function ipkd_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','ipkd_comment_count');

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

展开阅读全文
相关内容