-
Home
-
4bzCore
- Tips
How to Hide the "4bzCore Options" Admin Menu
function plt_hide_4bzcore_menus() {
//Hide the "4bzCore Options" menu.
remove_menu_page('fourbzcore_options');
}
add_action('admin_menu', 'plt_hide_4bzcore_menus', 11);
Where do I put this code?
How to Hide the "4bzCore Post Options" Meta Box
function plt_hide_4bzcore_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "4bzCore Post Options" meta box.
remove_meta_box('fourbzcore_options', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_4bzcore_metaboxes', 20);