I have a custom taxonomy (editions) and would like to have a year / month hierarchy in the taxonomy reflected in the URL structure.
/editions/2016/december /editions/2017/december /editions/2018/december WordPress doesn't seem to allow me to create this on the admin side. Is this possible?
For reference, here is my custom taxonomy setup inside of my functions.php:
/* Editions Function */ function aa_editions_tax() { register_taxonomy( 'editions', 'page', array( 'labels' => array( 'add_new_item' => 'Add New Edition', 'all_items' => 'All Editions', 'edit_item' => 'Edit Edition', 'menu_name' => 'Editions', 'name' => 'Editions', 'new_item' => 'New Edition', 'not_found' => 'No Editions Found', 'not_found_in_trash' => 'No Editions Found in Trash', 'parent' => 'Parent of Edition', 'search_items' => 'Search Editions', 'singular_name' => 'Edition', 'view_item' => 'View Edition' ), 'hierarchical' => true, 'public' => true, 'rewrite' => array( 'hierarchical' => true ), 'query_var' => true, 'show_ui' => true )); } add_action( 'init', 'aa_editions_tax' );