답변:
위의 모든 답변 목록과 관리 표시 줄 링크가 제거되었습니다. 테마 기능 파일에 추가하거나 플러그인으로 만드십시오. 모든 사람의 대답이 옳은 사람이 아니기 때문에 이것을 커뮤니티 위키로 표시하겠습니다.
<?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' );
?>
주석 메뉴를 제거하려면
add_action( 'admin_init', 'my_remove_admin_menus' );
function my_remove_admin_menus() {
remove_menu_page( 'edit-comments.php' );
}
사이트에 대한 의견 지원이 제거됩니다.
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"에 대한 행을 필터링하려면 해당 상자를 숨기거나 해커를 사용해야합니다. 그러나 내가 생각할 수있는 다른 곳에서는 "설명"텍스트를 제거해야합니다.
이렇게해도 마크 업 자체 에서 제거되지는 않지만 테마의 CSS에 다음 줄을 추가하여 WP 3.1 관리 막대 링크 (시각적 및 화면 판독기 모두)를 쉽게 숨길 수 있습니다.
li#wp-admin-bar-comments { display: none; visibility: hidden; }
current_user_can
기능을 사용하려는 경우 다음과 같은 기능을 사용하십시오 . 예 : if (!current_user_can('level_10'))
비 관리자 만 대상으로합니다.
바로 사용할 수있는 기본 솔루션이 있습니다. Frank Bültge의 플러그인입니다.
문서 : http://wpengineer.com/2230/removing-comments-absolutely-wordpress/
플러그인 다운로드 : https://github.com/bueltge/Remove-Comments-Absolutely
설치 만하면됩니다. 구성이 없습니다.
WP 3.5에서 잘 작동합니다
// 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');