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