-
Home
-
YAP – Yet Another Popups
- Tips
How to Hide YAP - Yet Another Popups Admin Menus
function plt_hide_yap_yet_another_popups_menus() {
//Hide "YAP - Yet Another Popups".
remove_menu_page('edit.php?post_type=yapopup');
//Hide "YAP - Yet Another Popups → All Popups".
remove_submenu_page('edit.php?post_type=yapopup', 'edit.php?post_type=yapopup');
//Hide "YAP - Yet Another Popups → Add New Popup".
remove_submenu_page('edit.php?post_type=yapopup', 'post-new.php?post_type=yapopup');
//Hide "YAP - Yet Another Popups → Settings".
remove_submenu_page('edit.php?post_type=yapopup', 'yapopups-settings');
}
add_action('admin_menu', 'plt_hide_yap_yet_another_popups_menus', 21);
Where do I put this code?
How to Hide the "Popup Slug" Meta Box
function plt_hide_yap_yet_another_popups_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Popup Slug" meta box.
remove_meta_box('yapopups_popup_slug_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_yap_yet_another_popups_metaboxes', 20);