2017-03-10 88 views
1

試圖僅顯示評論數一個不是總包括引用和通告WordPress的只顯示評論數

get_comments_number() // displays the total of comments, pingbacks and trackbacks 

我嘗試使用初級講座的代碼,但AINT工作

count($wp_query->comments_by_type['comment']); 

回答

2

可以使用get_comments function去做這個。

$num_comments = get_comments(
    array(
     'post_id' => get_the_ID(), 
     'type' => 'comment', 
     'count' => true // return only the count 
    ) 
); 
+0

再次感謝Matt,我將代碼添加到了comments.php中,並用$ num_comments替換了get_comments_number()。完美工作 –