2011-06-01 154 views
6

因此,我將以下代碼插入模板循環(在正確的位置),但它不輸出任何註釋。任何線索爲什麼?在WordPress主頁上顯示評論

<?php 
$withcomments = true; // force comments form and comments to show on front page 
comments_template('', true); 
?> 

我試圖在帖子的主頁主頁流上顯示每個帖子的評論。

編輯: 爲了記錄,我用了二十個主題。

回答

3

循環中loop.php的<?php endwhile; ?>前試試這個:

<?php 
    $withcomments = "1"; 
    comments_template(); 
?> 
+0

已經嘗試過了。沒有骰子:( – Dave 2011-06-01 17:42:30

+0

在loop.php?或index.php? – markratledge 2011-06-01 18:27:40

+0

我不得不把它放在我的模板的index.php(在顯示所有帖子的循環內),並且它運行良好。謝謝。 – Aki 2013-02-18 03:38:47

1

試試這個:

<?php global $withcomments; $withcomments = 1; comments_template(); ?> 
相關問題