ฉันไม่ต้องการให้แบบสอบถามความคิดเห็นทำงาน ฉันไม่คิดอะไรเกี่ยวกับความคิดเห็นที่จะแสดงในพื้นที่ admin ของ WordPress
เป็นไปได้หรือไม่?
แก้ไข:ลบลิงก์ทั้งหมดไปยังความคิดเห็นจากแถบผู้ดูแลระบบและส่วนแบ็กเอนด์ทั้งหมด
ฉันไม่ต้องการให้แบบสอบถามความคิดเห็นทำงาน ฉันไม่คิดอะไรเกี่ยวกับความคิดเห็นที่จะแสดงในพื้นที่ admin ของ WordPress
เป็นไปได้หรือไม่?
แก้ไข:ลบลิงก์ทั้งหมดไปยังความคิดเห็นจากแถบผู้ดูแลระบบและส่วนแบ็กเอนด์ทั้งหมด
คำตอบ:
นี่คือรายการคำตอบทั้งหมดข้างต้นและการลบลิงก์ของแถบผู้ดูแลระบบ เพียงเพิ่มลงในไฟล์ฟังก์ชั่นธีมของคุณหรือทำให้เป็นปลั๊กอิน ฉันจะทำเครื่องหมายว่านี่เป็นชุมชนวิกิเนื่องจากคำตอบของทุกคนถูกต้องไม่มีใครรวมเข้าไว้ด้วยกัน
<?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" บนแดชบอร์ดส่วนใหญ่เป็นรหัสยากดังนั้นคุณต้องซ่อนกล่องนั้นหรือทำการแฮกเกอร์เพื่อกรองบรรทัดเกี่ยวกับ "ความคิดเห็น" แต่ควรลบข้อความ "ความคิดเห็น" ทุกที่ที่ฉันนึกออก
นี้จะไม่ลบออกจากมาร์กอัปของคุณต่อ se , แต่คุณสามารถซ่อนการเชื่อมโยงบาร์ WP 3.1 ผู้ดูแลระบบ (ทั้งภาพและจากโปรแกรมอ่านหน้าจอ) โดยเพิ่มบรรทัดต่อไปนี้เพื่อ CSS ของธีมของคุณ:
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');