-
Home
-
Presentation Block
- Tips
function plt_hide_presentation_block_menus() {
//Hide the "Presentations" menu.
remove_menu_page('edit.php?post_type=presentation');
//Hide the "Presentations → All Presentations" menu.
remove_submenu_page('edit.php?post_type=presentation', 'edit.php?post_type=presentation');
//Hide the "Presentations → Add New Presentation" menu.
remove_submenu_page('edit.php?post_type=presentation', 'post-new.php?post_type=presentation');
}
add_action('admin_menu', 'plt_hide_presentation_block_menus', 15);
Where do I put this code?