Skip to content

Instantly share code, notes, and snippets.

@lstanard
Last active March 15, 2016 19:19
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 lstanard/8798438405ce2cfaf0a2 to your computer and use it in GitHub Desktop.
Save lstanard/8798438405ce2cfaf0a2 to your computer and use it in GitHub Desktop.
WP action and callback function to remove comments from admin menu
function remove_comment_menu_page() {
remove_menu_page( 'edit-comments.php' );
}
add_action('admin_menu', 'remove_comment_menu_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment