-
Home
-
Spiraclethemes Site Library
- Tips
How to Hide Spiraclethemes Site Library Admin Menus
function plt_hide_spiraclethemes_site_library_menus() {
//Hide the "Appearance → Import Demo Data" menu.
remove_submenu_page('themes.php', 'one-click-demo-import');
//Hide the "Spiraclethemes Site Library" menu.
remove_menu_page('ssl-settings');
}
add_action('admin_menu', 'plt_hide_spiraclethemes_site_library_menus', 11);
Where do I put this code?
How to Hide the "Twenty Seventeen Theme" Dashboard Widget
function plt_hide_spiraclethemes_site_library_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Twenty Seventeen Theme" widget.
remove_meta_box('spiraclethemes_site_library_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_spiraclethemes_site_library_dashboard_widgets', 20);