Created
September 1, 2020 04:11
-
-
Save MrThiemann/b43a7a0a7e2617168075f15855175dbe to your computer and use it in GitHub Desktop.
allow editors to edit menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function hide_menu() { | |
if (current_user_can('admin-clone')) { | |
remove_submenu_page( 'themes.php', 'themes.php' ); // hide the theme selection submenu | |
remove_submenu_page( 'themes.php', 'widgets.php' ); // hide the widgets submenu | |
remove_submenu_page( 'themes.php', 'customize.php?return=%2Fwp-admin%2Ftools.php' ); // hide the customizer submenu | |
remove_submenu_page( 'themes.php', 'customize.php?return=%2Fwp-admin%2Ftools.php&autofocus%5Bcontrol%5D=background_image' ); // hide the background submenu | |
// these are theme-specific. Can have other names or simply not exist in your current theme. | |
remove_submenu_page( 'themes.php', 'yiw_panel' ); | |
remove_submenu_page( 'themes.php', 'custom-header' ); | |
remove_submenu_page( 'themes.php', 'custom-background' ); | |
} | |
} | |
add_action('admin_head', 'hide_menu'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment