新聞中心
wordpress評(píng)論計(jì)數(shù)器源代碼
昨天有客戶問(wèn)我,如何實(shí)現(xiàn)計(jì)算wordpress的評(píng)論數(shù)目。小編不精編程,所以一時(shí)語(yǔ)言塞。通過(guò)論壇交流,獲得如下代碼,可以實(shí)現(xiàn)。如果你的wordpress主題不自帶自動(dòng)計(jì)算評(píng)論數(shù)功能的話,你可以參考如下代碼,希望能幫你解決問(wèn)題。 1、? 寫(xiě)出帖子ID。 [comments id="1"] 2、? 下面的這段源代碼,就可以幫助我們實(shí)現(xiàn)id1的文章的評(píng)論數(shù)。 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 . '">' . $cc . '</a>'; } add_shortcode('comments', 'comments_shortcode'); 純Linux環(huán)境下高端免備案[香港獨(dú)立IP地址]?php空間,僅僅只需199元一年起。商務(wù)中國(guó)域名核心代理直銷50元注冊(cè)國(guó)際頂級(jí)域名
本文地址:http://www.gle-technology.com/wordpress/4640.html