建站教程

建站教程

Products

当前位置:首页 > 建站教程 >

禁用WordPress网站评论的3种方法

GG网络技术分享 2025-03-18 16:15 0


在WordPress网站中,经常有很多垃圾评论,但是不想要评论继续保留或者直接想把全部评论删除应该怎么办?其实有几种方法可以禁用评论。这里就介绍一下禁用WordPress网站评论的3种方法。

从WordPress管理面板

  • 进入 "设置>讨论 "页面。
  • 取消勾选 "允许他人在新文章上发表评论"选项。
  • 点击 "保存更改 "按钮。
禁用WordPress网站评论的3种方法插图

这将禁用所有新的文章和页面的评论。如果你想禁用原有文章和页面的评论,你可以通过编辑每个文章或页面并取消勾选 "允许评论 "选项来实现。

禁用WordPress网站评论的3种方法插图1

有几个插件可以让你在WordPress中禁用评论。一个常用的插件是 "禁用评论"。

允许管理员在其网站上全面禁用评论。可以根据文章类型禁用评论。多站点友好。

要使用这个插件:

  • 安装并激活该插件。
  • 进入 "设置 > 禁用评论 "页面。
  • 勾选选项,禁止对文章、页面、附件和其他文章类型进行评论。
  • 点击 "保存更改 "按钮。

你也可以不通过安装插件,直接使用代码的方式在WordPress中禁用评论,方法是在你的主题的function.php文件中添加以下代码。

// Disable support for comments and trackbacks in post types

function df_disable_comments_post_types_support() {

$post_types = get_post_types();

foreach ($post_types as $post_type) {

if(post_type_supports($post_type, 'comments')) {

remove_post_type_support($post_type, 'comments');

remove_post_type_support($post_type, 'trackbacks');

}

}

}

add_action('admin_init', 'df_disable_comments_post_types_support');

// Close comments on the front-end

function df_disable_comments_status() {

return false;

}

add_filter('comments_open', 'df_disable_comments_status', 20, 2);

add_filter('pings_open', 'df_disable_comments_status', 20, 2);

// Hide existing comments

function df_disable_comments_hide_existing_comments($comments) {

$comments = array();

return $comments;

}

add_filter('comments_array', 'df_disable_comments_hide_existing_comments', 10, 2);

// Remove comments page in menu

function df_disable_comments_admin_menu() {

remove_menu_page('edit-comments.php');

}

add_action('admin_menu', 'df_disable_comments_admin_menu');

// Redirect any user trying to access comments page

function df_disable_comments_admin_menu_redirect() {

global $pagenow;

if ($pagenow === 'edit-comments.php') {

wp_redirect(admin_url()); exit;

}

}

add_action('admin_init', 'df_disable_comments_admin_menu_redirect');

// Remove comments metabox from dashboard

function df_disable_comments_dashboard() {

remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');

}

add_action('admin_init', 'df_disable_comments_dashboard');

// Remove comments links from admin bar

function df_disable_comments_admin_bar() {

if (is_admin_bar_showing()) {

remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);

}

}

add_action('init', 'df_disable_comments_admin_bar');

标签:

提交需求或反馈

Demand feedback