-
Home
-
Mozscape
- Tips
How to Hide the "Mozscape" Admin Menu
function plt_hide_mozscape_menus() {
//Hide the "Mozscape" menu.
remove_menu_page('mozscape_dashboard');
}
add_action('admin_menu', 'plt_hide_mozscape_menus', 11);
Where do I put this code?
How to Hide the "Moz Analytics" Meta Box
function plt_hide_mozscape_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Moz Analytics" meta box.
remove_meta_box('mozscape', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_mozscape_metaboxes', 20);