I’m trying to create a taxonomy that is sort of hidden.. meaning i intend to adjust the metabox so that you can only select a unique term from 3 options. “featured”,”normal” or “excluded”. but i can’t figure out how to remove the administration menu.
the following removes the Tags menu item from underneath Posts:
add_action('admin_menu','yoursite_admin_menu');
function yoursite_admin_menu() {
// remove_submenu_page was introduced in 3.1
remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=post_tag' );
}
but this doesn’t remove the Featured taxonomy from underneath Portfolio
add_action('admin_menu','yoursite_admin_menu');
function yoursite_admin_menu() {
// remove_submenu_page was introduced in 3.1
remove_submenu_page( 'edit.php?post_type=portfolio', 'edit-tags.php?taxonomy=featured&post_type=portfolio' );
}
i’ve tried it a couple of different ways w/ regards to the slugs, but can’t get any of them to work. what am i missing?