这段代码可以很轻易地计算出评论数,不过貌似好多主题都自带这个功能了,没带这个功能的朋友就参考做一下吧首先把帖子ID写出然后使用下面这段代码就可以实现计数ID1帖子的评论数

这段代码能够很轻易地计算出谈论数,不过形似很多主题都自带这个功用了,没带这个功用的朋友就参阅做一下吧

谈论计数代码(计数板计数法)  comment count 插件与修改 评论 新闻资讯 第1张

首先把帖子ID写出

[comments id="1"]

然后运用下面这段代码就能够完成计数ID1帖子的谈论数

function comments_shortcode($atts) { extract( shortcode_atts( array(
'id' => ''
), $atts ) );

$num = 0;
$post_id = $id;
$queried_post = get_post($post_id);
$cc = $queried_post->comment_count;
if( $cc == $num || $cc > 1 ) : $cc = $cc.' Comments';
else : $cc = $cc.' Comment';
endif;
$permalink = get_permalink($post_id);
return '<a href="'. $permalink . '" class="comments_link">' . $cc . '</a>';
}
add_shortcode('comments', 'comments_shortcode');

转载请说明出处
知优网 » 谈论计数代码(计数板计数法)

发表评论

您需要后才能发表评论