-
Home
-
Search Exclude
- Tips
How to Hide the "Search Exclude" Admin Menu
function plt_hide_search_exclude_menus() {
//Hide the "Settings → Search Exclude" menu.
remove_submenu_page('options-general.php', 'search_exclude');
}
add_action('admin_menu', 'plt_hide_search_exclude_menus', 11);
Where do I put this code?
How to Hide the "QuadLayers News" Dashboard Widget
function plt_hide_search_exclude_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "QuadLayers News" widget.
remove_meta_box('wp-dashboard-widget-news', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_search_exclude_dashboard_widgets', 20);