I solved it with this workaround. I created a new page (“Movies” with the URL domain.cc/movies) and added this via shortcode:
<?php
$taxonomy = 'artists';
$tax_terms = get_terms( $taxonomy, array(
'post_type' => 'artwork',
'orderby' => 'name',
'order' => 'ASC'
) );
?>
<?php
foreach ($tax_terms as $tax_term) {
?><div class="artistslist">
<a href="https://wordpress.stackexchange.com/<?php echo $taxonomy;?>/<?php echo $tax_term->slug;?>"><?php echo $tax_term->name;?>
</div>
<?php } ?>
Now I can access artist archives via domain.cc/artists/some-artist-name, and an A-Z list of all artists on domain.cc/artists
Related Posts:
- How to add images to taxonomies?
- Combine multiple custom user taxonomy in single url
- Taxonomy , subtaxonomy,child taxonomy of a product woocommerce
- How do I taxonomy terms based on terms they are used alongside?
- Taxonomies on custom taxonomies
- Add terms to a taxonomy archive from within the same taxonomy
- Check if current term is a child of another term
- SQL QUERY needed to get POST category (taxonomy) ? – MUST be SQL statement
- Advanced Tax Query
- How to display custom taxonomy in multiple columns?
- Custom taxonomies making WP very slow – Way to fix?
- Sorting taxonomy columns by meta value numeric
- Get Taxonmy Term ID For Current Post
- Changing stylesheet depending on custom taxonomy terms
- Taxonomy archive showing no results
- Custom taxonomy [year] is directing to yearly archive
- How to add Post Format Taxonomy Archive page in the menu?
- Custom Taxonomy index/archive hierarchy
- Filter custom taxonomy archive posts by 2nd custom taxonomy using select dropdown
- Custom Taxonomy Term Archive Page Template that Filters 2 or more Taxonomies
- Getting associated taxonomies
- How to use multiple archive templates for a taxonomy?
- How to add images to taxonomy terms? [duplicate]
- one post per term taxonomy
- I have custom post type with custom taxonomy. But not found the taxonomy page..
- Taxonomy archive template that shows posts from more than one taxonomy
- Query custom taxonomy for category including children
- How to get related taxonomies based on a category with mysql query?
- Prioritise Pages over Taxonomy Term Root Archive, but not Taxonomy Term Child Archives
- Tracking the name of a custom taxonomy
- Fill New Taxonomies
- Taxonomy archive, categorised by other taxonomy, not hiding empty taxonomies
- How to get a terms and posts associated with another term?
- What’s the url queryvar for a taxnomy archive?
- Creating a Taxonomy Page [duplicate]
- How do you search for a post by custom taxonomy?
- Exclude 2 in 3 terms of A Taxonomy from all Archives
- How to get multiple Taxonomies not All Taxonomies?
- WordPress Taxonomy Menu
- wp_get_object_terms count on taxonomies within an category archive
- Make custom post type display with custom taxonomy in url
- Taxonomies starting with a hyphen (minus) to assign B.C. dates to a post
- Complex Taxonomy scheme
- Querying posts globally based on custom taxonomy with its own taxonomymeta table
- How to use taxonomies on attachments with the new Media Library?
- How to display custom taxonomies in posts?
- How to modify the query in taxonomy-custom.php to sort term archives by a custom meta field?
- Hook to process a new taxonomy tag before it is created?
- Multiple users – only allow them to manage their own terms for custom taxonomy when logged in
- wp_options table value
- Custom Taxonomy Only Showing Top Level Terms in Admin?
- Is it possible to get a Previous/Next Taxonomy term archive URL?
- How do I display a tag cloud with both post tags AND a custom taxonomy?
- Improving WP_Query performance for multiple taxonomies
- Create Child Taxonomies
- How to count the number of terms in a taxonomy
- Create Advanced search with taxonomies (not filter list)
- Current category link filter
- display taxonomy slug from term ID
- Redirect all child taxonomy to its parent
- How can I populate a select element with terms from a custom taxonomy and filter post results?
- How do I list the pages of a custom taxonomy?
- Why does a new taxonomy term get created when I assign an existing term to a post?
- Add Image Uploader In Admin Panel
- Tell the difference between a term and page when they have the same ID
- Custom Taxonomy Query
- Proper way to update the slug of a taxonomy using register_taxonomy? [duplicate]
- My custom taxonomy page is leading in 404 page
- Show template part if part of term
- Corrupted nav-menu?
- Remove taxonomy widget from “PAGE” post
- List Top 5 taxonomy terms based on number of post
- Get list of taxonomies associated with users
- Register `product_cat` taxonomy for default post post type
- Taxonomy.php how to show post only in current taxonomy with wp_query?
- Don’t display taxonomy if empty
- List terms of custom taxonomy if matches other taxonomy
- Include get_term_link inside search
- display taxonomy terms with link
- Custom field with terms from another taxonomy programmatically
- Taxonomies and subtaxonomies relations
- How to create a non removable taxonomy term?
- How to show category list in WordPress
- transfer two existing taxonomy terms into one custom metabox
- How to add all existing Custom Taxonomy to Admin Menu Creations Interface?
- Change the Page Title of the Archive Page for Portfolio Tags
- Why get_terms() behaves strangely when being called in admin (for use in meta box)?
- qtranslate-x problem with custom term description
- Templates files for custom post type with custom tags
- taxonomy query on front page
- Looking for suggestions on creating simple database (Help!!)
- Custom taxonomy – query returns an error
- Get Posts with matching lowest taxonomies
- Can you orderby slug in a taxonomy archive page using WP_Query?
- Any way to make custom taxonomy field searchable?
- query posts returns 10 records
- Remove Tag Cloud Words from Custom Taxonomy
- How to add/enqueue Custom CSS for a custom taxonomy page?
- is_tax not working for custom taxonomy
- Foreach for get_the_terms for hierarchical taxonomy don’t repeat Top Level Terms if contains multiple Second Level Terms