Add this to your functions.php file to remove the projects custom post type from the Wordpress Dashboard. Useful if you don't need it there at all:
function remove_menus(){
remove_menu_page( 'edit.php?post_type=project' ); //Projects
}
add_action( 'admin_menu', 'remove_menus' );
Comments
Post a Comment