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?
- How to show all posts of the category in wordpress?
- Filter for “get_post_type_archive_link()”
- Create permalink structure for one taxonomy archive per custom post type
- Better to use a post type archive, page template, or shortcode for generating a highly configurable CPT archive?
- How to sort list of custom posts to get view like a tree of posts under categories and their children’s categories?
- Glossary with Custom Post Type
- Categories assigned to custom post type not found
- Displaying custom post type on category pages but not on blog listings
- Disable single pages and archives and keep preview
- Custom post type with tags
- Change / Delete the default post type and category?
- How to customize the Categories meta box to allow only one category?
- List custom post type but redirects to home page
- Restrict categories to a custom post type
- Is there a way to list posts of only a certain category
- Getting all custom posts with a certain category
- How to get category image custom post type taxonomy in wordpress?
- How do I get the child category posts from a custom post type?
- Custom post type archive page pagination
- Need post_type_archive_title function but in ‘single’
- Return array of categories to php function for current post
- Hierarchical Custom Post Types – Show only parent on tax archive?
- Pagination is not working on single-{slug}.php but works fine on page-{slug}.php
- Archive page for taxonomy terms
- How can i change the output of posts_nav_link();
- Custom Post Type with archive page but no detail page
- Limit amount of posts made within a custom taxonomy
- WordPress posts page for customer filtering and sorting along with category filter
- Why is my category template ignoring post type?
- Not sure if I should create multiple custom post type [closed]
- Archive for CPT
- Custom post types and category archive
- List Taxonomies: Don’t list taxonomy if it has no post – depending on custom post-meta?
- Categorise Custom Post Types
- Tag page only display 10 posts
- in_category for custom post types
- Custom Post type & Taxonomy 404
- WP_Query Custom Post Type if Category ID Equals
- Custom post types and ‘new WP_Query’
- Showing custom post type categories in the menu
- Creating Sections for Post Types
- Listing all slugs?
- List categories, subcategories and posts from custom taxonomy and custom post type
- Archive Page for Multiple Custom Post Types
- Categories won’t appear on custom post type
- Archive page for custom post type and custom taxonomy
- Create a Custom Path to Archive
- Displaying taxonomies as category links within sidebar and creating pages for these
- Custom post category name showing empty
- What is the best way to set the post category (Custom Post Type) automatically based on the one of the tags assigned to the post?
- How to show related posts of category on post within custom posttype
- Sudden 404 pages on product category archives
- Custom Post Types – trying to make “title” display
- Convert category to custom post type
- How can I display a specific category on Front-Page
- How to show custom post count in archive page
- Do not show child pages within a file page
- Archive for custom taxonomy
- How to seperate posts by categories?
- WooCommerce change
- Adding categories to custom post type in permalink
- Custom Post Type is not respecting assigned categories
- Help with Travel Guide Setup
- Project Category Heading
- Getting Custom post category from Form
- How to call Shortcode categories for custom post types?
- ‘Blog Archive’ suddenly appeared on custom post type; how to remove
- How to filter posts by categories?
- Display a custom post type list by taxonomy term
- Custom Post Type order Title ASC
- Loop category including custom post type
- Highlight specific menu item when custom post is page
- Test if a Category contains certain Custom Post Types
- create category upon saving post and save post in that category
- How do I turn CPT automatically also into category?
- Add taxonomy or category slug to custom post types URL