BBP Destination Tags
Used to tag Art and Features for linking to a Destination on the BBP Website
// Register Custom Taxonomy function destination_custom_taxonomy() { $labels = array( 'name' => 'Destination Tags', 'singular_name' => 'Destination Tag', 'menu_name' => 'Destination Tags', 'all_items' => 'All Destinations', 'parent_item' => 'Parent Item', 'parent_item_colon' => 'Parent Item:', 'new_item_name' => 'New Destination Tag', 'add_new_item' => 'Add New Destination Tag', 'edit_item' => 'Edit Destination Tag', 'update_item' => 'Update Destination Tag', 'separate_items_with_commas' => 'Separate Tags with commas', 'search_items' => 'Search Destination Tags', 'add_or_remove_items' => 'Add or remove Tags', 'choose_from_most_used' => 'Choose from the most used Destination Tags', 'not_found' => 'Destination Tag Not Found', ); $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( 'destination_tag', 'custom_post_type', $args ); } // Hook into the 'init' action add_action( 'init', 'destination_custom_taxonomy', 0 );