1
我正在製作一個插件,我希望單個帖子頁面中的評論完全不會被打印。我需要自己查詢數據庫並使用結果打印自己的html。WordPress插件 - 不要在帖子頁面上打印評論
如何讓WordPress不打印評論而不禁用它們?
謝謝
編輯: 作爲一個建議,我使用:
apply_filters('comments_template', array($this,'comments_template'), 10, 1);
function comments_template($template){
$template = '';
return $template;
}
什麼也沒有發生,我究竟做錯了什麼?
嗨,:),你可以請看看我的編輯? thanx –
謝謝,但它仍然無法正常工作...我這樣做:apply_filters('comments_template',array($ this,'comments_template'),10,1);在我的類的構造函數,我的函數甚至不叫... –
apply_filters或add_filter?應該是add_filter。 –