-
Home
-
Webmaster Yandex
- Tips
How to Hide Webmaster Yandex Admin Menus
function plt_hide_webmaster_yandex_menus() {
//Hide the "Dashboard → Webmaster Yandex" menu.
remove_submenu_page('index.php', 'webmaster_yandex_dashboard');
//Hide the "Settings → Webmaster Yandex" menu.
remove_submenu_page('options-general.php', 'webmaster_yandex_options_page');
}
add_action('admin_menu', 'plt_hide_webmaster_yandex_menus', 11);
Where do I put this code?
How to Hide the "Send text to Yandex" Meta Box
function plt_hide_webmaster_yandex_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Send text to Yandex" meta box.
remove_meta_box('wm_ya_metabox_add_text', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_webmaster_yandex_metaboxes', 20);