Because there’s no such thing.
If you use the same taxonomy for two or more post types then there isn’t separate archives for each post type in that taxonomy’s terms. There’s a single archive for that taxonomy that lists posts of both post types. This might not work for built in taxonomies (categories and tags) though, as they are configured to only display posts. To display your post type on the category archive you’ll need to use the pre_get_posts
filter to add it:
add_filter(
'pre_get_posts',
function( $query ) {
if ( $query->is_category() ) {
$query->set( 'post_type', [ 'post', 'cptname' ] );
}
}
);
If you need separate archives for categories for each post type, then you need to register a separate taxonomy for your post type. Something like cptname_category
. They won’t share terms, but they will have separate archives.
Related Posts:
- ACF for custom post type archive pages: which hook to use?
- Use the custom post type archive for taxonomies?
- Custom Post type date archive for custom taxonomy
- Show categories of custom post type and not all posts
- CPT Archive pre_get_posts not working?
- adding custom post type “name” to single template
- Removed custom post type archive page shows blog page
- Custom Post Type Archive template not being called
- Custom Post Type with Configurable Sidebar via ACF
- Query Posts that have Custom Taxonomy
- Plain links in single-class.php and archive-class.php not working
- Custom Post Type Custom Archive Page Not Working
- Getting custom taxonomy posts on archive page
- add_action ‘init’ from inside a class for custom post types
- Archive page for custom post type and custom taxonomy
- Custom post type archive – error in nav-menu-template.php
- Order Custom Post Type Archive by multiple values in functions.php
- Custom post type category permalinks and archive pages
- Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
- Pagination does not work on Custom Post Type archive while trying to get load more function working
- CPT archive page – show one post from each taxonomy term
- Get single posts archive information
- How to have multiple archive pages?
- Displaying custom taxonomy menu in custom post type archive
- Create a Custom Path to Archive
- Custom Post Type Date Based Archive URL rewrite [duplicate]
- Specifying a template for custom post type pages
- WordPress sitemap with Custom Post Types
- Pages not appearing?
- Is possible register two archive pages for single custom post type?
- CPT archive with WP native/core tax/categories
- How to set a ‘page’ as parent of a custom post type?
- Display All Courses in Course Archive Page
- Archive page of CPT’s custom Taxonomy
- Getting Same Description in All the Custom Taxonomy Posts
- Invalid content when I try to import custom post type from the old template wordpress
- Archive page for WordPress Custom Post Type doesn’t show pagination from paginate_links()
- 2 Custom Post Types In 1 Archive Page?
- Custom post type archive URLs with a single taxonomy
- Different number posts per page based on custom post type term id
- Does this archive template part look like its making too many calls to the db?
- How to add specific terms in a custom post type?
- How to change URL for custom post type archive?
- Finding the CPT archive template source
- Displaying all posts by category and showing content on click
- Custom post type author issues
- Custom Post Type / Taxonomy not displaying archive
- WordPress Page hierarchy ( parent is singular of custom post types slug ) is returning not found
- pagination problem listing custom post types of taxonomy in wordpress
- Custom Post type page content (archive page)
- Posts per Page on custom Taxonomy Template
- Group custom post type posts by month
- ACF Pro Accessing fields on a Custom Post Type
- Static Front Page not working for custom theme
- Creating an archive page or simple template to list all values of a custom field of specific post type listing
- Do not show child pages within a file page
- Tell wordpress to show a single page instead of an archive page
- Display Custom Post Type Archive content with Shortcode
- Permalink for custom post type pages not working
- Custom Post Type archive page listing a 404 or single post
- Set archive of custom post type like ‘posts’ page in reading settings is set
- Building Link List for Custom Tax
- Custom taxonomy with custom post type archive page
- Custom post pagination not working
- Custom Post Type / Taxonomy / Term – what template to use to avoid 404-page?
- Unsure what page hierarchy to use with CPT UI to show on front end
- Only show categories that have posts within custom post type
- get_permalink() of page the enclosing page not posts
- get first limited words from a custom post in the archive page
- Meta_query by date for Events archive
- How to manage a custom post type archive as a page?
- How to manage a custom post type archive as a page?
- Custom post type post_type_link gives “page not found” on any other custom post type
- Custome post type “tags” pick default archive instead of custom post type archive
- Customize url from the_terms
- Custom post types not displaying per category
- How to Show all Values in category.php page using post_type
- Want to display my custom date archive to date.php but dont know how
- Help with Multi Level Category Archive Page
- How do I get the posts from single page custom post type from a sidebar to display in a page?
- Show index and not the archive for “Dog Custom Post” with default slug
- Custom post type archive page not showing on archive-posttype.php
- Custom post type with two templates
- Highlight a Post on archive page if it has a new comment?
- Custom Post Type shows pagination (w/404) or posts_per_page query, but not both
- How do I make my archive page look like popular reviewing sites (e.g., Polygon and Gamespot) [closed]
- Display custom post type archive on page.php template
- Making a archive gallery page for a custom post type which already has an archive page
- Custom taxonomy in custom post type archive with pagination
- why custom post archive gives always no more than 10 posts despite of paging settings?
- Rewriting archive page slug to be different than custom post type slug
- Pagination fault in custom post type archive page [duplicate]
- Custom post types archive
- Site loads very slow for archive custom post type page
- Templates list in “Page Attributes” metabox is inaccurate
- Stop Custom post type from being searched via URL
- Permalink of custom post type partly broken
- Remove the “View” Link in Post edit Admin
- Custom Post Type Archive Links Not Working
- CPT archive as home page