WordPress 如何關閉博客評論 ,WordPress 企業網站教程請使用以下代碼加入到主題的 function 文件中。
function disable_page_comments( $posts ) {
if ( is_page()) {
$posts[0]->comment_status = 『disabled';
$posts[0]->ping_status = 『disabled';
}
return $posts;
}
add_filter( 『the_posts』, 『disable_page_comments』 );