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』 );