Skip to content

Instantly share code, notes, and snippets.

@dcooney
Created December 4, 2013 19:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcooney/7793554 to your computer and use it in GitHub Desktop.
Save dcooney/7793554 to your computer and use it in GitHub Desktop.
Remove 'Customize' menu item from WordPress admin.
//Remove Customize.php
function remove_sub_menus () {
remove_submenu_page('themes.php', 'customize.php'); //Customize
}
add_action('admin_menu', 'remove_sub_menus');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment