It is actually quiet easy using WP page template and taxonomy templates (Why do you want to display all results on one page? I think it is better when you URLs will have some logical structure).
You can create new page template and use wp_list_categories function:
<?php
/*
Template Name: Taxonomy Terms
*/
get_header();
?>
<div id="primary">
<div role="main" id="content">
<?php
wp_list_categories( 'title_li=Themes&taxonomy=theme' );
?>
</div>
</div>
<?php
get_footer();
This will outpout the list of all the terms (categories) for your custom taxonomy “theme”.
Additionally you can use WordPress templates hierarchy to modify the display of others template. e.x. taxonomy-theme.php
Related Posts:
- How to sort list of custom posts to get view like a tree of posts under categories and their children’s categories?
- Custom Post Type order Title ASC
- How to get all taxonomies of a post type?
- Renaming Custom Post Types and Taxonomies
- get_terms by custom post type
- Saving Taxonomy Terms
- Get Posts by Custom Post Type ,Taxonomy, and Term
- What is singular.php?
- Custom Taxonomy as checkbox or dropdown
- Taxonomy: Why ‘with_front’ => false DOES NOT WORK?
- How to change permalink structure for custom post type and it’s taxonomies?
- Get the first post term
- How do I append multiple taxonomies to the URL?
- What are the differences between custom post type and custom page templates?
- Page Template as Custom Post Type Archive
- Custom Taxonomy as Dropdown in admin
- Setting a custom sub-path for blog without using pages?
- Custom Post Type Archives by Date and Taxonomy
- Creating “static” taxonomies to choose from, inside custom post type?
- How do I dynamically populate wp_nav_menu from a custom taxonomy?
- Custom Taxonomy’s Label to change the text appearing in Appearance > Menu
- How to completely disable a taxonomy archive on the frontend?
- How to limit the number of terms (terms acts like categories)
- Taxonomy count per Post type
- Custom Post Type – Taxonomy Dropdown Menu?
- How can I list all the categories under a Custom Post Type (taxonomy)?
- Add Content to Page without shortcodes
- Taxonomy term in permalink
- How do I display two separate taxonomy archives for two post types that share a single taxonomy?
- Custom taxonomy not showing up when adding a new custom post type
- How do I list custom taxonomy terms without the links?
- How to list custom taxonomy categories?
- Loading custom page template via plugin
- Post formats “audio” and “video” only showing in index.php
- Custom Taxonomy Template Post List with Sort Order
- Ordering Posts List By Taxonomy Terms?
- Query Custom Post Type taxonomy type based on page
- wp_insert_term doesn’t work with custom post type’s taxonomy
- Creating a Custom Post Type for Inserting Preset Content into Post & Pages?
- How to list all categories and tags in a page?
- show tags of custom post type ONLY
- WordPress keeps fetching the archive page instead of the template page
- Taxonomy + post_type
- Remove quick edit for custom post type
- Using 1 taxonomy for multiple post types?
- Count posts that have specific taxonomy term attached
- Retrieve single term slug
- Taxonomy archives based on Custom Post Type
- How to add custom template in plugin?
- Filtering Posts by Multiple Taxonomy Terms such as in an Admin Post Listing?
- How to quickly switch custom post type singular template?
- Disable Single Post View for Specific Taxonomy on Custom Post Type
- Order Posts by Taxonomy and Meta Value
- How to set individual capabilities on a taxonomy? Or how to re-register an existing taxonomy?
- Create an archive page for custom taxonomies
- Get the ‘slug’ of a custom taxonomy
- Add a Template to a custom post type
- How to use a dedicated template for the Custom Post Type from a plugin?
- Taxonomy page returns 404 page not found
- WordPress calls archive page instead of Custom Page Template
- How do I Make a custom post type get a custom post template in a plugin
- Taxonomy terms with edit/filter link in wp-admin, in the list of custom posts
- It is possible to get a list of post types asociated to a taxonomy?
- display multiple term post from taxonomy in a single page
- How would I leverage custom Taxonomies in this scenario?
- List taxonomies with thumbnails
- How can you make permalink work for custom post type and taxonomy?
- Custom Metabox with Taxonomy Dropdown – Saving Issue
- Assign Page Template Within A Custom Post Type
- Dynamic page.php template for custom post types
- Custom post type archive and single.php files not working
- How to get a list of term names of the custom post type im currently on in single.php
- How to show term-specific post list, without posts associated with child terms?
- Group list of posts by taxonomy and allow for pagination
- Custom Post Type with Custom Title
- Priority for Categories, Tags, Taxonomies, Posts, Pages and Custom Posts with same url
- Page Templates – this code only works for one Custom Post Type
- How to get the parent’s taxonomy?
- Pagination on a custom page template
- Query multiple taxonomy in Custom Post Type
- Internationalize / translate custom post types & taxonomies
- Adding a term name from a custom taxonomy assigned to a post link displayed by a wp_query loop based on another taxonomy
- Rewrite custom post & taxonomy to share same URL path
- Group Custom post type in a page by its taxomony tag
- create a back-end wordpress content submission using custom post type
- Disable WordPress Recognizing Path as Attachment
- Custom Post Type – Archive page title
- Get the most popular terms for a custom post type
- Include custom post type in “all posts”
- How do I list terms of a custom taxonomy at i.e. domain.com/brands/
- WordPress custom post type Single.php?
- Same base slug for CPT post and CPT taxonomy terms
- Multiple templates for custom post type
- wp_insert_post custom taxonomy
- How do I create a custom post type for a training CMS in WordPress?
- Displaying related posts in a custom post type by a custom taxonomy
- Add Taxonomy Values Within a Custom Post Type RSS Feed
- Custom Post Type: How to display all of same taxonomy?
- Taxonomy-{taxnonomy}.php is not working
- Display taxonomy term only if there’s a value