General News Type Taxonomy
// Register Custom Taxonomy
function generate_news_type_taxonomy() {
$labels = array(
'name' => 'News Types',
'singular_name' => 'News Type',
'menu_name' => 'News Type',
'all_items' => 'All News Types',
'parent_item' => 'Parent News Type',
'parent_item_colon' => 'Parent News Type:',
'new_item_name' => 'New News Type Name',
'add_new_item' => 'Add New News Type',
'edit_item' => 'Edit News Type',
'update_item' => 'Update News Type',
'view_item' => 'View Item',
'separate_items_with_commas' => 'Separate items with commas',
'add_or_remove_items' => 'Add or remove items',
'choose_from_most_used' => 'Choose from the most used',
'popular_items' => 'Popular Items',
'search_items' => 'Search Items',
'not_found' => 'Not Found',
'no_terms' => 'No items',
'items_list' => 'Items list',
'items_list_navigation' => 'Items list navigation',
);
$rewrite = array(
'slug' => 'news-type',
'with_front' => false,
'hierarchical' => false,
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'rewrite' => $rewrite,
);
register_taxonomy( 'news_type_taxonomy', array( 'cpt_news' ), $args );
}
add_action( 'init', 'generate_news_type_taxonomy', 0 );