程序员人生 网站导航

给 WordPress 博客评论添加计数统计代码

栏目:WordPress时间:2014-02-18 05:17:29
给 WordPress 博客评论添加计数统计代码,下面这段代码可以很轻易地计算出评论数,不过貌似好多主题都自带这个功能了,没带这个功能的朋友就参考做一下吧

首先把帖子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');
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐