Status
Tied to Communities CPT
// Register Custom Taxonomy function status() { $labels = array( 'name' => _x( 'Statuses', 'Taxonomy General Name', 'stateview' ), 'singular_name' => _x( 'Status', 'Taxonomy Singular Name', 'stateview' ), 'menu_name' => __( 'Status', 'stateview' ), 'all_items' => __( 'All Statuses', 'stateview' ), 'parent_item' => __( 'Parent Status', 'stateview' ), 'parent_item_colon' => __( 'Parent Status:', 'stateview' ), 'new_item_name' => __( 'New Status Name', 'stateview' ), 'add_new_item' => __( 'Add New Status', 'stateview' ), 'edit_item' => __( 'Edit Status', 'stateview' ), 'update_item' => __( 'Update Status', 'stateview' ), 'view_item' => __( 'View Status', 'stateview' ), 'separate_items_with_commas' => __( 'Separate statuses with commas', 'stateview' ), 'add_or_remove_items' => __( 'Add or remove statuses', 'stateview' ), 'choose_from_most_used' => __( 'Choose from the most used', 'stateview' ), 'popular_items' => __( 'Popular Statuses', 'stateview' ), 'search_items' => __( 'Search statuses', 'stateview' ), 'not_found' => __( 'Not Found', 'stateview' ), 'no_terms' => __( 'No statuses', 'stateview' ), 'items_list' => __( 'Statuses list', 'stateview' ), 'items_list_navigation' => __( 'Statuses list navigation', 'stateview' ), ); $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( 'status', array( 'communities' ), $args ); } add_action( 'init', 'status', 0 );