-
Home
-
eduPort Flyout
- Tips
How to Hide the "eduPort" Admin Menu
function plt_hide_eduport_flyout_menus() {
//Hide the "Settings → eduPort" menu.
remove_submenu_page('options-general.php', 'eduport_options');
}
add_action('admin_menu', 'plt_hide_eduport_flyout_menus', 11);
Where do I put this code?
How to Hide the "eduPort" Meta Box
function plt_hide_eduport_flyout_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "eduPort" meta box.
remove_meta_box('eduport', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_eduport_flyout_metaboxes', 20);