-
Home
-
Su-Gallery
- Tips
How to Hide su-gallery Admin Menus
function plt_hide_su_gallery_menus() {
//Hide the "Su-Gallery" menu.
remove_menu_page('edit.php?post_type=su_gallery');
//Hide the "Su-Gallery → All Gallery" menu.
remove_submenu_page('edit.php?post_type=su_gallery', 'edit.php?post_type=su_gallery');
//Hide the "Su-Gallery → Add New Gallery" menu.
remove_submenu_page('edit.php?post_type=su_gallery', 'post-new.php?post_type=su_gallery');
}
add_action('admin_menu', 'plt_hide_su_gallery_menus', 15);
Where do I put this code?
How to Hide su-gallery Meta Boxes
function plt_hide_su_gallery_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Others" meta box.
remove_meta_box('meta-builder', $screen->id, 'normal');
//Hide the "Shortcode" meta box.
remove_meta_box('meta-shortcode', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_su_gallery_metaboxes', 20);