I would like to create an archive page with a list of my custom taxonomies that link to a page that shows posts with that taxonomy relationship.
I registered my taxonomy like this:
register_taxonomy('my_taxo', array('my_custom_post'), array(
'hierarchical' => true,
'label' => 'my taxo'
'show_ui' => true,
'query_var' => true,
'show_in_nav_menus ' => true
)
);
What is the recommended way to create an archive page that can be visited at a url such as mysite.com/my_taxo or mysite.com/taxonomy/my_taxo.
Ideally the template file that will be used would be taxonomy-{taxonomy}.php.
Does this involve add_rewrite_rule? If so what might that look like?