Hello,
I want to remove portfolio menu item, I don’t need to desactivate portfolio, only remove item from admin menu (to clean editors admin bar). Can I use something like this:
function MyCleanPlugin_remove_menus(){
remove_menu_page( ‘x-portfolio’ ); //Can’t find the correct hook to do this…
}
add_action( ‘admin_menu’, ‘MyCleanPlugin_remove_menus’ );
function MyCleanPlugin_remove_menus(){
remove_menu_page( 'edit.php?post_type=x-portfolio' ); //Can’t find the correct hook to do this…
}
add_action( 'admin_menu', 'MyCleanPlugin_remove_menus' );