You can use pre_get_posts hook to add your custom post type to the query
function include_recipes( $query ) {
if ( $query->is_category ) {
$query->set( 'post_type', array('post','recipes') );
}
return $query;
}
add_filter( 'pre_get_posts', 'include_recipes' );
Related Posts:
- Taxonomy terms with edit/filter link in wp-admin, in the list of custom posts
- get_terms by custom post type
- Get the first post term
- What is the use of the wp_links table?
- Creating “static” taxonomies to choose from, inside custom post type?
- How do I dynamically populate wp_nav_menu from a custom taxonomy?
- Custom taxonomy not showing up when adding a new custom post type
- How to list all categories and tags in a page?
- show tags of custom post type ONLY
- Create an archive page for custom taxonomies
- How can you make permalink work for custom post type and taxonomy?
- Internationalize / translate custom post types & taxonomies
- Rewrite custom post & taxonomy to share same URL path
- How do I list terms of a custom taxonomy at i.e. domain.com/brands/
- Add Taxonomy Values Within a Custom Post Type RSS Feed
- Taxonomy-{taxnonomy}.php is not working
- Get list of terms of current taxonomy archive for another taxonomy
- Get_post_meta() won’t return value
- Associate Taxonomies Across Post Types
- Related links – from other sites
- Show Post Count of a Category
- Menu Multiple Taxonomies
- How to make a custom taxonomy selectable in post publish area?
- Problem with custom post types, taxonomy and permalinks
- How to create new category for custom post type?
- Fetch taxonomies by custom post type id array
- get_terms showing all categories instead of the ones assigned to a specific post
- Create Custom Post Type Permalink Structure
- Custom page template for category taxonomy
- How can I display an archive of only one category of my custom post type?
- Why does querying on post_tags (which has been applied to custom post types) only return posts?
- Order By Post Type ThenBy Taxonomy
- How to show CPTs in term archive
- Custom query to filter posts that have current post as a taxonomy [closed]
- How do I get array of types associated with a taxonomy?
- wp_set_object_terms() not adding new term to custom post and custom taxonomy
- Display all posts in main category and 1 subcategory
- Show category ID on custom post type
- wp_get_post_terms on custom post type with custom taxonomies returning an empty array
- Is using taxonomies the way to go here or would custom post types be better?
- Categories of custom taxonomy don’t show any posts
- Is it possible to have dedicated page for parent/child taxonomy?
- Why are taxonomy terms not saving when using custom meta boxes with radio button taxonomy selectors?
- Display a grid of taxonomy terms at root taxonomy page
- limit value taxonomy based on previous taxonomy value wordpress
- Using meta_query and tax_query at the same time
- Display latest x posts from all categories in Custom Post Type/Taxonomy
- How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
- Taxonomy in URL
- How to organise this data within WordPress
- How to Set Taxonomy Object Description?
- Custom Taxonomy Is Being Pulled into a Page, But It Doesn’t Have A Hyperlink
- Querying two taxonomies with tax_query not woking
- Variable not working in WP_Query
- Associate all Custom Post Types with Taxonomy
- Invalid Taxonomy
- Alphabetically sort a taxonomy.php template by post title
- Linking to Post Types from wp-admin
- Custom Post Types not queried in Custom Taxonomy archives or Native archives
- Show Taxonomies with admin area for custom post type?
- Remove categories taxonomy from custom post type
- Changing CPT slug and taxonomy already registered in parent theme
- Copy/Move selected taxonomy terms to another taxonomy for posts
- Query Custom Post Type by Taxonomy
- Copying over taxonomy structure from one CPT to another
- Sort Archive by Taxonomy
- Display ONE taxonomy and its assigned pages
- Publish box in CPT remove ‘edit’ link
- Menu for taxonomies and posts belongs to taxonomy
- How to automatically create a terms based on each post of a post type
- Page that lists publications by classifying them by taxonomy
- Display category filters for custom post type when category is shared by multiple post types
- How to order taxonomy terms by most recent post?
- Custom taxonomy returns 404 even with saving permalinks
- Create custom post type categories
- editing shortcode for custom post type within a plugin
- How to display all terms from all taxonomies in post, but separately for each taxonomy?
- Set a Default CPT taxonomy by taxonomy id
- List all posts associated under custom taxonomy
- how to create custom taxonomy drop downs for parents and child
- Get name CPT with slug taxonomy
- Add other all taxonomies as meta boxes to custom post type
- How to get post type archive category title
- Automatically / dynamically populating tags in custom post type
- Custom post type category link + add to menu
- One of my headings is mysteriously coming up as a link in my CPT Archive
- Single taxonomy for different custom post types
- Taxonomy and Custom Post type with Collpase
- How to create groups like that in buddypress?
- Organising custom taxonomies and custom post types
- Filter Term By Parent Term – Custom Post Type
- Best approach to allow front-end display of posts’ reviewers?
- get children from current variable (taxonomy) via shortcode
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- Custom Post Type parent slug as menu item
- List all posts from custom post type by taxonomy
- Single and Archive Pages with Custom Post Type
- Sharing a custom taxonomy – No posts?
- show only one category posts in admin
- Get all active posts that are tied to a custom taxonomy for a custom post type