有什么办法可以完全删除注释功能和部分?


26

我不希望任何评论查询运行。我对在wordpress管理区域中显示的评论一无所知。

这有可能吗?

编辑:从管理栏和所有后端部分中删除所有指向评论的链接。


仅需注意,您将不得不从模板文件中手动删除代码,因为无法从那里将代码隐藏起来。我相信,如果我错了,请有人纠正我。
xLRDxREVENGEx 2011年

Answers:


40

这是上述所有答案的列表,并删除了管理栏链接。只需将其添加到主题功能文件中或使其成为插件即可。我将其标记为社区Wiki,因为每个人的回答都是正确的,只是没有人将其全部加在一起。

<?php
// Removes from admin menu
add_action( 'admin_menu', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
    remove_menu_page( 'edit-comments.php' );
}
// Removes from post and pages
add_action('init', 'remove_comment_support', 100);

function remove_comment_support() {
    remove_post_type_support( 'post', 'comments' );
    remove_post_type_support( 'page', 'comments' );
}
// Removes from admin bar
function mytheme_admin_bar_render() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('comments');
}
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
?>

11

删除评论菜单:

add_action( 'admin_init', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
    remove_menu_page( 'edit-comments.php' );
}

大。从新的WP 3.1顶部面板开始?
彼得·韦斯特伦德

7

这应该删除对您网站上评论的支持:

add_action('admin_menu', 'remove_comment_support');

function remove_comment_support() {
    remove_post_type_support( 'post', 'comments' );
    remove_post_type_support( 'page', 'comments' );
}

我不知道它是否会隐藏管理部分中的所有评论。仪表板上的“ Right Now”框大部分是硬编码的,因此您必须隐藏该框或做些黑客手段来过滤掉有关“ Comments”的注释。但是它应该删除我能想到的其他任何地方的“评论”文本。


但是它仍然在管理菜单中可见。不想那样
彼得·韦斯特伦德

3

本身不会从标记中删除它,但是您可以通过将以下行添加到主题的CSS中来轻松隐藏WP 3.1管理栏链接(无论是在视觉上还是在屏幕阅读器上):

li#wp-admin-bar-comments { display: none; visibility: hidden; }


在做更多关于该主题的阅读时,我在“六次修订”中发现了这篇文章,内容涉及如何调整许多管理界面,包括删除注释功能的所有痕迹。
–toxictofu

...并且如果出于任何原因要让管理员级别的用户保留任何一项,请使用此current_user_can功能,例如:if (!current_user_can('level_10'))仅针对非管理员用户。
–toxictofu

用户级别已弃用。请改用“ manage_options”或其他功能。
scribu 2011年

@scribu:我对此很纳闷,在WP Codex中找不到用户级别的最新参考。感谢您让我知道(此角色和功能表帮助我获得了领导才能)。
–toxictofu


3
// 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');

资源

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.