-
Home
-
Easy Menu Icons – WordPress Menu Icon Plugin
- Tips
How to Hide the "Easy Menu Icons" Admin Menu
function plt_hide_easy_menu_icons_menus() {
//Hide the "Easy Menu Icons" menu.
remove_menu_page('emicons-menu');
}
add_action('admin_menu', 'plt_hide_easy_menu_icons_menus', 11);
Where do I put this code?
How to Hide the "Easy Menu Icons Stories" Dashboard Widget
function plt_hide_easy_menu_icons_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Easy Menu Icons Stories" widget.
remove_meta_box('emicons_notice_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_easy_menu_icons_dashboard_widgets', 20);