2013-03-29 54 views
0

我正在開發一個插件,一切都很好,但有一個問題。
如何隱藏或刪除評論框。我失去了我的許多小時,但無法開發正確的腳本。我現在的劇本是這樣
add_filter('comments_template', 'remove_comments_template_on_pages', 11);
function remove_comments_template_on_pages($file) {
if (is_page())
comments_template('', true);
}從wordpress頁面隱藏或刪除評論框

我不知道如何開發這個腳本。任何幫助都可能導致我完成我的插件。

回答

0

將以下代碼添加到您的functions.php文件。

add_action('init', 'remove_page_feature'); 

function remove_page_feature() { 
    remove_post_type_support('page', 'comments'); 
} 

現在提供檢查執行評論模板之前,如下:

if (post_type_supports('page', 'comments'); ) 
    comments_template('', true); 
} 

注意:使用上面的代碼將禁用評論在頁面上。