Hello,嗨,大家好,我是哈喽猿。
这里是哈喽猿网
今天推送的是wordpress教程的文章,感谢您宝贵的时间阅读
对于某些类型的WordPress站点,您可能不需要在页面(页面)上提供注释,因此可以通过以下方式轻松禁用或删除WordPress页面上的评论功能。
方法1:取消页面编辑界面中页面的评论功能
方法2:将以下代码添加到当前主题的Functions.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' );
方法3:直接打开当前主题的page.php文件,注销或删除类似于以下内容的代码:
<?php if (comments_open()) comments_template( '', true ); ?>
0 评论