Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Created February 22, 2015 05:54
Show Gist options
  • Select an option

  • Save halgatewood/ac4d60f485ec49d77d15 to your computer and use it in GitHub Desktop.

Select an option

Save halgatewood/ac4d60f485ec49d77d15 to your computer and use it in GitHub Desktop.
Remove the Comments Tab from the WordPress admin.
// REMOVE COMMENTS TAB IN WORDPRESS ADMIN
function hg_remove_comment_menu() { remove_menu_page('edit-comments.php'); }
add_action('admin_menu', 'hg_remove_comment_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment