Skip to content

Instantly share code, notes, and snippets.

@erropix
Created September 21, 2020 17: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 erropix/6072dcf61e9d43a3fa6b8a02c66b373f to your computer and use it in GitHub Desktop.
Save erropix/6072dcf61e9d43a3fa6b8a02c66b373f to your computer and use it in GitHub Desktop.
Remove comments links from admin bar and admin menu
/*
Title: Hide Comments Menu
Type: PHP > Custom Code
Location: Init
Priority: 10
*/
// Remove comments from admin bar
add_action('wp_before_admin_bar_render', function () {
global $wp_admin_bar;
$wp_admin_bar->remove_node('comments');
});
// Remove comments from admin menu
add_action('admin_menu', function () {
remove_menu_page('edit-comments.php');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment