-
Home
-
Lightweight Sidebar Manager
- Tips
How to Hide the "Sidebars" Admin Menu
function plt_hide_sidebar_manager_menus() {
//Hide the "Appearance → Sidebars" menu.
remove_submenu_page('themes.php', 'edit.php?post_type=bsf-sidebar');
}
add_action('admin_menu', 'plt_hide_sidebar_manager_menus', 102);
Where do I put this code?
How to Hide the "Sidebar Settings" Meta Box
function plt_hide_sidebar_manager_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Sidebar Settings" meta box.
remove_meta_box('sidebar-settings', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_sidebar_manager_metaboxes', 20);