2017-10-06 50 views
0

我有以下問題。如何在wordpress中的單一portfolio.php中添加評論框?

在一個名爲「single-portfolio.php」的文件中,該文件正在作爲我的WordPress站點的帖子。我一直在使用「臉譜意見」插件的意見

<div class="fb-comments" data-href="<?php echo get_permalink();?>" data-numposts="5"></div> 

但現在我需要回到舊的WordPress的意見,所以我有嘗試:

<?php comments_template(); ?> 

但不工作。評論部分沒有出現。我試圖複製文件夾中的評論.php文件是single-portfolio.php但不起作用。

我能做什麼?

回答

0

comments_template()函數的第一個參數支持指定要使用的註釋模板。嘗試將其指向您的默認評論模板,通常位於主題文件夾的根目錄中。

comments_template(string $file = '/comments.php', bool $separate_comments = false) 

另外,請記住,在comments_template()功能:

不會如果不是單篇文章或網頁,或者如果文章沒有評論顯示評論模板。

來源:https://developer.wordpress.org/reference/functions/comments_template/