Video Tag
// Register Custom Taxonomy
function smfs_video_tag_tax() {
$labels = array(
'name' => 'Video Tags',
'singular_name' => 'Video Tag',
'menu_name' => 'Tags',
'all_items' => 'All Tags',
'parent_item' => 'Parent Tag',
'parent_item_colon' => 'Parent Tag:',
'new_item_name' => 'New Tag Name',
'add_new_item' => 'Add New Tag',
'edit_item' => 'Edit Tag',
'update_item' => 'Update Tag',
'view_item' => 'View Tag',
'separate_items_with_commas' => 'Separate tags with commas',
'add_or_remove_items' => 'Add or remove tags',
'choose_from_most_used' => 'Choose from the most used',
'popular_items' => 'Popular Tags',
'search_items' => 'Search Tags',
'not_found' => 'Not Found',
'no_terms' => 'No tags',
'items_list' => 'Tags list',
'items_list_navigation' => 'Tags list navigation',
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => false,
'show_tagcloud' => false,
);
register_taxonomy( 'video-tag', array( 'video' ), $args );
}
add_action( 'init', 'smfs_video_tag_tax', 0 );