-
Home
-
Notibar – Notification Bar for WordPress
- Tips
How to Hide the "Notibar" Admin Menu
function plt_hide_notibar_menus() {
//Hide the "Settings → Notibar" menu.
remove_submenu_page('options-general.php', 'http://127.0.0.1/wp-admin/customize.php?autofocus%5Bpanel%5D=njt_notification-bar');
}
add_action('admin_menu', 'plt_hide_notibar_menus', 11);
Where do I put this code?
How to Hide the "Recommended" Dashboard Widget
function plt_hide_notibar_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Recommended" widget.
remove_meta_box('dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_notibar_dashboard_widgets', 20);