When you register your custom post type you can set which taxonomies will be registered for this post type. So you can register your custom ‘Course’ taxonomy and the built-in ‘Category’ taxonomy with your custom post type ‘Tutorials’. And posts will just be registered with ‘Category’.
function tutorial_setup_post_type() {
$args = array(
'public' => true,
'label' => __( 'Tutorials', 'textdomain' ),
'taxonomies' => array(
'category',
'course'
),
);
register_post_type( 'tutorial', $args );
}
add_action( 'init', 'tutorial_setup_post_type' );
https://developer.wordpress.org/reference/functions/register_post_type/
Related Posts:
- Get The Post Type A Taxonomy Is Attached To
- Shouldn’t this be easy?! Custom post type/custom taxonomy permalink
- Custom Post type & Taxonomy URL structure
- How to pass URL parameters for advanced taxonomy queries with multiple terms for one custom taxonomy
- Combining Multiple Taxonomies in one URL
- Getting the Intersection of Two Custom Taxonomy Terms for a Custom Post Type?
- How can I list all the categories under a Custom Post Type (taxonomy)?
- Two Custom Post Types, Share Two Taxonomies
- ‘No pages found’ in Dashboard after registering custom taxonomy
- Querying Posts by Taxonomy From Alternate Network Site
- How to display recent posts added in custom post types
- Creating a function that receives the taxonomy terms that have been changed in a custom post type
- Permalinks when filtering multiple custom post types by single taxonomy
- Filter custom post type archive page with custom taxonomies (categories) with AJAX
- How-to leverage WordPress for creating Extended Social Profiles
- How can I filter by taxonomy on a custom post type’s page?
- How To Create A Custom Taxonomy 404 Page
- How to Get Current Custom Post Type Selected Taxonomy Term (Not All Terms)
- Query Multiple Taxominies Across Multiple Post type’s
- Custom Taxonomy URL are redirecting to page with the same name
- Overriding taxonomy and custom post type
- Custom Post hierarchical to custom taxonomy
- Loop custom taxonomy to get lists of cutom post types?
- Hierarchical Custom Post Types in Array
- Making certain categories of CPT not publicly queryable
- Conditional Query of Custom Post Type and custom taxonomy
- Is $object_type truly required with register_taxonomy()?
- Show a Category X’s custom post type on Category X archive page?
- Specific query for custom post type
- WordPress uses url different from defined in rewrite arg of custom post type
- Suggested Post and Taxonomy structure
- Display post content with respect to its title?
- Display taxonomy terms, child terms and posts in a template
- Use custom walker to add taxonomy terms to main nav menu
- WP_Query orderby and tax_query
- Custom Taxonomy not being saved on custom posttype
- Ordering values entered in Custom Taxonomies
- Show fields based on taxonomy selection in editor
- Permalinks: custom structure for taxonomy – tags?
- Creating custom post type with custom taxonomy and custom fields programatically
- How to get only child terms from a custom taxonomy of current post type?
- Add “Select All” to custom taxonomy
- Disable custom taxonomy on admin bar
- How can I create an automatic drop down menu with my tags?
- how to show records that don’t have custom meta value
- how to get this tax_query working?
- How to see posts in taxonomy endpoint
- Get taxonomy singular name instead of taxonomy slug inside $taxonomy query
- Add term slug in URL of custom post type details page
- Cannot choose custom categories for custom post type in post editor
- Custom post type and custom taxonomy 404 on page 2
- Ideas on how to organize a project [closed]
- How should I structure complex content hierarchies?
- Querying two different post types with the same taxonomony
- Arduous WordPress Custom Post Type Permalink Path
- Modifying rewrite rules to use /category//
- Convert Custom Taxonomy Posts to Normal Posts
- Custom Post type Query by Taxonomy
- Order custom posts by taxonomy, then by meta_key
- Safe to throw 404 error in request filter?
- Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category
- set object terms after some some time of published post – functions.php
- Is there a way to use ‘publicly_queryable’ => false only on specific taxonomy term?
- Display custom post types in dropdown with option “all”
- How to select custom posts thats are tagged with multiple taxonomies using wpdb
- Posts per Page on custom Taxonomy Template
- Set up Custom Taxonomy Archive Template File To Cover 3 Categories
- Dont know why my custom post type not add_post_meta
- Taxonomy shows up twice on Custom Post Type
- Custom Post didn’t display on tags page
- Custom fields for taxonomies with custom value for each post
- Custom Post Type / Taxonomy / Term – what template to use to avoid 404-page?
- Back, Next, and Previous links for the REFERRING term archive
- Query posts by multiple custom fields
- Display title of all custom posts from same taxonomy term on a custom post template
- Set different posts_per_page for custom post type/taxonomy
- Why get_posts() returns empty array while I am trying to get posts from some specific taxonomies and work properly with others?
- Facing some Issues on Two Parts Custom Post Type Taxonomy Names
- I want to create an archive and single page for a custom taxonomy for a custom post type
- Change the url of a custom post type to include taxonomy
- Creating adminable dynamic filtering on custom post type
- Complex strcuture as CPT or taxonomy for use in woocommerce product variations [closed]
- WP_Query for CPT with filter by another WP_Query
- Get posts in same category not working
- Heirarchical URLs with CPT and custom taxonomy
- Displaying taxonomies with manage_{custom-post-type}_posts_custom_column
- How to query posts by meta keys AND under specific category?
- Shortcode display CPT Query only showing 1 post?
- Permalinks when using Custom Post Type with static page for archive
- How to change permalinks to taxonomy and post type’s posts
- Query Posts with Custom Taxonomy from a Custom Post Type
- How to show a custom taxonomy using a custom template
- Get Registered Custom Post Type to get All Custom Taxonomies
- Parent cpt/child custom post type URL permalink relationship
- Query Only Show Text on Posts With Certain Taxonomy Tag
- Custom Taxonomy Showing in WP Menu
- How to make a single Menu Item call another Mega Menu for Custom Post Types and Custom Taxonomies?
- Display ONLY ONE $term (Out of 4 terms) from a Custom Taxonomy and CPT
- the_post_navigation in single page with multiple taxonomies
- Url rewrite with custom post type and taxonomy