Skip to content

Instantly share code, notes, and snippets.

@christoferw
Created August 12, 2016 10:32
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 christoferw/2703a84f38feba9b1c991938bdcff230 to your computer and use it in GitHub Desktop.
Save christoferw/2703a84f38feba9b1c991938bdcff230 to your computer and use it in GitHub Desktop.
Remove WordPress Admin Menu Items
if ( ! function_exists( 'weslink_remove_plugin_admin_menu' ) ) {
function weslink_remove_plugin_admin_menu() {
remove_menu_page('edit-comments.php'); // Kommentare
}
}
add_action( 'admin_menu', 'weslink_remove_plugin_admin_menu', 9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment