是否可以通过任何方式进行? ,以及所有后端部分。
#1 楼
这是上述所有答案的列表,并删除了管理栏链接。只需将其添加到主题功能文件或使其成为插件即可。我将其标记为社区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' );
?>
#2 楼
删除“注释”菜单:add_action( 'admin_init', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
remove_menu_page( 'edit-comments.php' );
}
评论
大。从新的WP 3.1顶部面板开始?
– Peter Westerlund
2011年3月6日上午11:37
#3 楼
这应该会删除您网站上对评论的支持: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”的行。但是它应该删除我能想到的其他所有地方的“注释”文本。
评论
但是它仍然在管理菜单中可见。不想那样
– Peter Westerlund
2011-3-5在11:59
#4 楼
// 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');
来源
#5 楼
这本身不会从标记中删除它,但是您可以通过将以下行添加到主题的CSS中来轻松隐藏WP 3.1管理栏链接(无论是在视觉上还是从屏幕阅读器上):li#wp-admin-bar-comments { display: none; visibility: hidden; }
评论
在对此主题进行更多阅读的同时,我在“六次修订”中发现了该帖子,其中涵盖了如何调整许多管理界面,包括删除注释功能的所有痕迹。
–毒豆腐
2011年5月22日7:43
...并且如果出于某种原因您希望对管理员级别的用户保留任何一项,请使用current_user_can函数,例如:if(!current_user_can('level_10'))仅针对非管理员用户。
–毒豆腐
2011年5月22日7:56
用户级别已弃用。请改用'manage_options'或其他功能。
–抄写员
2011年5月22日15:12
@scribu:我对此很纳闷,最近在WP Codex中找不到用户级别的参考。感谢您让我知道(此角色和功能表帮助我获得了领导的能力)。
–毒豆腐
2011年5月26日下午6:21
#6 楼
有一个现成的解决方案可以做到这一点。它是FrankBültge的插件文档:
http://wpengineer.com/2230/removing-comments-absolutely-wordpress/
插件下载:
https://github.com/bueltge/Remove-Comments-绝对
只需安装,就可以了。没有配置。
在WP 3.5上正常工作
评论
仅需注意,您将不得不从模板文件中手动删除代码,因为无法从那里将代码隐藏起来。我相信,如果我错了,请有人纠正我。