Skip to content

Instantly share code, notes, and snippets.

@amrikarisma
Created July 19, 2022 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrikarisma/90c36f94fe4fea178da2434b10855d8f to your computer and use it in GitHub Desktop.
Save amrikarisma/90c36f94fe4fea178da2434b10855d8f to your computer and use it in GitHub Desktop.
Remove or hide all about WP Comments from Dashboard Admin
<?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' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment