Issue Of this Month – Platform
// Register Custom Taxonomy
function custom_taxonomy_issueofmonth() {
$labels = array(
'name' => _x( 'Issues Month', 'Taxonomy General Name', 'platform' ),
'singular_name' => _x( 'Issue Month', 'Taxonomy Singular Name', 'platform' ),
'menu_name' => __( 'Issue of Month', 'platform' ),
'all_items' => __( 'All Months', 'platform' ),
'parent_item' => __( 'Parent Month', 'platform' ),
'parent_item_colon' => __( 'Parent Month:', 'platform' ),
'new_item_name' => __( 'New Issue of Month', 'platform' ),
'add_new_item' => __( 'Add a Month's Issue', 'platform' ),
'edit_item' => __( 'Edit this Month's Issue', 'platform' ),
'update_item' => __( 'Update this Month's Issue', 'platform' ),
'view_item' => __( 'View this Month's Issue', 'platform' ),
'separate_items_with_commas' => __( 'Separate Months with commas', 'platform' ),
'add_or_remove_items' => __( 'Add or remove Issues of this Month', 'platform' ),
'choose_from_most_used' => __( 'Choose from the most used', 'platform' ),
'popular_items' => __( 'Popular Issues of Month', 'platform' ),
'search_items' => __( 'Search Issues of Month', 'platform' ),
'not_found' => __( 'Not Found', 'platform' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => false,
);
register_taxonomy( 'issue_of_month', array( 'post' ), $args );
}
// Hook into the 'init' action
add_action( 'init', 'custom_taxonomy_issueofmonth', 0 );