国外主机指南

提供国外虚拟主机评测,VPS主机,国外主机托管租用,优惠码信息,域名注册信息及优惠活动。

导航

« bbPress 2.0.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');

 


该篇发布于(www.xiao4ren.com),本文不限制转载.

  • 相关文章:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最新评论及回复

最近发表

Powered By Z-Blog 1.8   Theme By Bokezhuti

Copyright 国外主机指南 www.xiao4ren.com. Some Rights Reserved.