标签:
勾掉允许评论即可。
第二种,应部分企业建站需求,需要关闭全站资讯评论。
把以下代码copy到主题的function.php文件即可
/**禁用博客评论功能*/ 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‘ );
标签:
原文地址:http://my.oschina.net/sikou/blog/488456