Art
// Register Custom Taxonomy
function video_art_taxonomy() {
$labels = array(
'name' => _x( 'Video_Art', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Video_Art', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Video_Art', 'text_domain' ),
'all_items' => __( 'Alle Video_Art', 'text_domain' ),
'parent_item' => __( 'Eltern Video_Art', 'text_domain' ),
'parent_item_colon' => __( 'Eltern Video_Art:', 'text_domain' ),
'new_item_name' => __( 'Neues Video_Art heißt:', 'text_domain' ),
'add_new_item' => __( 'Neues Video_Art hinzufügen', 'text_domain' ),
'edit_item' => __( 'Video_Art bearbeiten', 'text_domain' ),
'update_item' => __( 'Video_Art Gebiet', 'text_domain' ),
'view_item' => __( 'View Video_Art', 'text_domain' ),
'separate_items_with_commas' => __( 'Video_Art mit Komma trennen', 'text_domain' ),
'add_or_remove_items' => __( 'Add or remove Video_Art', 'text_domain' ),
'choose_from_most_used' => __( 'Choose from the most used Video_Art', 'text_domain' ),
'popular_items' => __( 'Popular Video_Art', 'text_domain' ),
'search_items' => __( 'Video_Art suchen', 'text_domain' ),
'not_found' => __( 'Nicht gefunden', 'text_domain' ),
'no_terms' => __( 'Keine Video_Art', 'text_domain' ),
'items_list' => __( 'Liste von Video_Art', 'text_domain' ),
'items_list_navigation' => __( 'Video_Art list navigation', 'text_domain' ),
);
$rewrite = array(
'slug' => 'video_Art',
'with_front' => true,
'hierarchical' => true,
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'rewrite' => $rewrite,
);
register_taxonomy( 'video_art', array( 'videos' ), $args );
}
add_action( 'init', 'video_art_taxonomy', 0 );