-
Home
-
Statify
- Tips
How to Hide the "Statify" Admin Menu
function plt_hide_statify_menus() {
//Hide the "Settings → Statify" menu.
remove_submenu_page('options-general.php', 'statify-settings');
}
add_action('admin_menu', 'plt_hide_statify_menus', 11);
Where do I put this code?
How to Hide the "Statify" Dashboard Widget
function plt_hide_statify_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Statify" widget.
remove_meta_box('statify_dashboard', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_statify_dashboard_widgets', 20);