-
Home
-
Top Bar Notification & Sticky Banners
- Tips
How to Hide Top Bar Notification & Sticky Banners Admin Menus
function plt_hide_top_bar_notification_sticky_banners_menus() {
//Hide "Top Bar NSB".
remove_menu_page('edit.php?post_type=topbarnsb');
//Hide "Top Bar NSB → All the banners".
remove_submenu_page('edit.php?post_type=topbarnsb', 'edit.php?post_type=topbarnsb');
//Hide "Top Bar NSB → Add a new banner".
remove_submenu_page('edit.php?post_type=topbarnsb', 'post-new.php?post_type=topbarnsb');
//Hide "Top Bar NSB → Banner styles".
remove_submenu_page('edit.php?post_type=topbarnsb', 'edit.php?post_type=topbarnsb-style');
//Hide "Top Bar NSB → Settings".
remove_submenu_page('edit.php?post_type=topbarnsb', 'topbarnsb-settings');
}
add_action('admin_menu', 'plt_hide_top_bar_notification_sticky_banners_menus', 11);
Where do I put this code?
How to Hide Top Bar Notification & Sticky Banners Meta Boxes
function plt_hide_top_bar_notification_sticky_banners_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Banner preview" meta box.
remove_meta_box('topbarnsb_banner_preview', $screen->id, 'normal');
//Hide the "Banner settings" meta box.
remove_meta_box('topbarnsb_banner_cf', $screen->id, 'normal');
//Hide the "Style settings" meta box.
remove_meta_box('topbarnsb_style_cf', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_top_bar_notification_sticky_banners_metaboxes', 20);