-
Home
-
Easy Album Gallery
- Tips
How to Hide Easy Album Gallery Admin Menus
function plt_hide_easy_album_gallery_menus() {
//Hide "Easy Gallery".
remove_menu_page('edit.php?post_type=easy-album-gallery');
//Hide "Easy Gallery → All Gallery".
remove_submenu_page('edit.php?post_type=easy-album-gallery', 'edit.php?post_type=easy-album-gallery');
//Hide "Easy Gallery → Add Gallery".
remove_submenu_page('edit.php?post_type=easy-album-gallery', 'post-new.php?post_type=easy-album-gallery');
//Hide "Easy Gallery → Help".
remove_submenu_page('edit.php?post_type=easy-album-gallery', 'egallery_help');
}
add_action('admin_menu', 'plt_hide_easy_album_gallery_menus', 11);
Where do I put this code?
How to Hide the "Easy Gallery Upload" Meta Box
function plt_hide_easy_album_gallery_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Easy Gallery Upload" meta box.
remove_meta_box('eag-group-gallery', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_easy_album_gallery_metaboxes', 20);