-
Home
-
Simple SEO
- Tips
How to Hide the "Simple SEO" Admin Menu
function plt_hide_cds_simple_seo_menus() {
//Hide the "Settings → Simple SEO" menu.
remove_submenu_page('options-general.php', 'simpleSEOAdminOptions');
}
add_action('admin_menu', 'plt_hide_cds_simple_seo_menus', 11);
Where do I put this code?
How to Hide the "Simple SEO" Meta Box
function plt_hide_cds_simple_seo_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Simple SEO" meta box.
remove_meta_box('simple-seo', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_cds_simple_seo_metaboxes', 20);