-
Home
-
Gravitation Brands
- Tips
function plt_hide_gravitation_brands_menus() {
//Hide "Brands".
remove_menu_page('edit.php?post_type=gv_brands');
//Hide "Brands → All brands".
remove_submenu_page('edit.php?post_type=gv_brands', 'edit.php?post_type=gv_brands');
//Hide "Brands → Add brand".
remove_submenu_page('edit.php?post_type=gv_brands', 'post-new.php?post_type=gv_brands');
//Hide "Brands → Help".
remove_submenu_page('edit.php?post_type=gv_brands', 'gravitation-brands.php');
}
add_action('admin_menu', 'plt_hide_gravitation_brands_menus', 11);
Where do I put this code?