无人自助棋牌室真能赚钱吗
第一种方法:
点开显示选项如下图
勾掉即可。
第二种:部分企业站需求,需要关闭全站资讯评论(其实就是博客评论)
把如下代码copy到主题的functions.php文件即可
[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’ );
[/php]