給 WordPress 博客評論添加計數統計代碼
來源:程序員人生 發布時間:2014-02-18 05:17:29 閱讀次數:3612次
給 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');
生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈