You can create a template page and use the WP loop: taxonomy-{taxonomy}-{term}.php
https://developer.wordpress.org/themes/template-files-section/taxonomy-templates/
Or you can use the get_posts functionality: https://codex.wordpress.org/Template_Tags/get_posts#Taxonomy_Parameters
Something like this maybe:
<?php
$args = array(
'posts_per_page' => -1,
'post_type' => 'reports',
'my_custom_taxonomy_name' => 'education',
'post_status' => 'publish'
);
$show_albums = get_posts( $args );
?>
This will return a list of posts in that category, you can then display them on the page.
Related Posts:
- Filtering a custom post type by custom taxonomy in archive template
- Why are posts from custom post type not displayed in “category” archive?
- Displaying category archive of custom post types
- Regex problem in an add_rewrite_rule
- get_categories for custom post type and filter by custom taxonomy (brand) and list child categories of a defined category
- Category page only displaying the posts from a custom type
- custom taxonomy archive by year
- CPT Archive with core Category
- Linking to the most recent post in a Custom Post Type
- Custom Post Type Archive Page Filtering
- Archieve.php not loading for custom post type
- multiple custom post type on category page
- Archive Template being used instead of Category Template for Custom Post Type
- Menu’s breaking, now showing all page links on site
- Advanced archive url structure (category, tag and date)
- Display all Categories except ones with a specific parent
- Custom WordPress theme not displaying posts from category
- Adding Custom Post Types to category/tag/author archives breaks header content
- Custom category taxonomy – archive page not showing up
- Custom Post type archives / categories give 404
- archive.php can’t find categorized posts
- How can I set up the URL for a category archive for a custom post type?
- Categories in custom post types
- Stop header code from showing in category page?
- Get custom post type slug for an archive page
- Removing custom post type from link search results
- How can I list all the categories under a Custom Post Type (taxonomy)?
- Custom Post Type Archives by Date with Custom Permalink
- category__in not working on custom post type
- how do I group content in magazine-style ‘issues’?
- Use standard WordPress categories with a CPT
- Change plugin’s has_archive = true to false?
- How can I add single catogory for custom post type?
- Get the post_type of current taxonomy or category page
- Categories and Tags not working!
- automatically save custom post type title as a category
- How do I display custom post types through a common taxonomy?
- Get post type from taxonomy or category page
- get_categories() for only CPT
- category.php displays ALL posts instead of just those with the current category
- Display Next/Prev when looping Custom post-types archive?
- When ‘is_post_type_archive()’ return true?
- Possible for Category Base and Custom post Type to share the same slug/permalink?
- Weird problem happening with custom taxonmy when creating/updating posts
- How to detect filter in URL in Category page?
- Replace li Items with divs with classes
- showing custom post types of a certain category only
- Get posts from a custom post type by child categories of a parent category
- get_posts() with custom post type does not work outside page.php
- Tag Archive for Custom-Post-Type Posts yielding 404 when permalinks set to postname
- Show a Category X’s custom post type on Category X archive page?
- Multiple level category drop-down from the WordPress dashboard
- How to get categories linked in posts for a specific post type
- WordPress showing archive.php instead page
- How to edit this code to get the categories in achieve page?
- Get the category from custom post type
- How to create a gallery page with categories?
- Cross reference custom post types
- Make a custom_post translatable
- Custom Post type category pages template and loop
- Custom templates for a specific category
- How to retrieve category of a post in have_post loop?
- Get parent category id from child category page for custom taxonomy
- Disable custom taxonomy on admin bar
- Assign CPT archive page attributes
- Want a custom query with just one category but from all custom post types
- Display Date & Author Info on Custom Post Type Archive Page
- How to constrain the results to a specific post_type on tag archive page?
- Custom Post Type with modified permalink structure results in 404
- Highlight current post type when inside custom post type
- Custom post not appearing under custom taxonomy category
- How to prevent a custom post type from using the archive.php template?
- If custom category search then page 2 not found
- Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category
- Show the categories the current post has
- Custom post type data not displaying If I select the category from the dropdonw
- Custom Post type page content (archive page)
- Set up Custom Taxonomy Archive Template File To Cover 3 Categories
- Group custom post type posts by month
- Creating an archive page or simple template to list all values of a custom field of specific post type listing
- Custom post types not showing on the standard WordPress Category page
- Get posts in custom post type categories
- Do not load the categories in Category.php
- Turning archive templates to a page template maintaining the slug
- Counting the number of post without custom post type
- Custom Archive – hide posts until a search is made?
- How to sort custom post’s category by id from the theme’s function.php?
- how to use two permalinks for one custom post type based on categories
- Rewriting archive page slug to be different than custom post type slug
- Site loads very slow for archive custom post type page
- Custom Catagory not found
- Page to show custom posts and one category
- How can I list custom post by custom category?
- how to show perticular category posts in custome page
- Use only selected regular categories for a Custom post form
- Bulk remove category from custom post type?
- Problem with menu categories doubling up when updating database?
- Remove slug from Custom Category Permalink + dual-category permalinks
- How to query posts by category with the_title();
- Can WordPress show posts based on a button that the user clicked 2 pages back?