Create one taxonomy and share it across all post types. You won’t be able to have the same slug across multiple taxonomies anyway, they have to be unique due to the way they’re stored in the database.
You can use the built in tags taxonomy with your custom post type by setting
'taxonomy' => array('post_tag')
when you register your custom post type, or you can add a custom taxonomy to regular posts (as well as your custom types) when you register your taxonomy by passing an array for $object_type:
array('post', 'post_type_author', 'post_type_book')
Related Posts:
- How to get all taxonomies of a post type?
- Taxonomy: Why ‘with_front’ => false DOES NOT WORK?
- Custom taxonomy not showing up when adding a new custom post type
- How do I list custom taxonomy terms without the links?
- How to list custom taxonomy categories?
- Custom Taxonomy Template Post List with Sort Order
- wp_insert_term doesn’t work with custom post type’s taxonomy
- How to list all categories and tags in a page?
- Retrieve single term slug
- Create an archive page for custom taxonomies
- How to get the parent’s taxonomy?
- How do I list terms of a custom taxonomy at i.e. domain.com/brands/
- Taxonomy-{taxnonomy}.php is not working
- Display taxonomy term only if there’s a value
- Get list of terms of current taxonomy archive for another taxonomy
- Show Post Count of a Category
- Order WordPress Custom Taxonomy Pages & Pagination Not Working
- Relationship between two taxonomies and a custom post type [closed]
- 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
- Custom page template for category taxonomy
- 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
- wp_get_post_terms on custom post type with custom taxonomies returning an empty array
- Categories of custom taxonomy don’t show any posts
- How to display custom taxonomies with links in filter menu?
- How to Filter custom post type by taxonomy?
- 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
- How to conditionally redirect to the post from a taxonomy page?
- How do I display the grand child items of a taxonomy term?
- Is it better to use WordPress Custom Post Types or Taxonomies?
- How to make custom taxonomy into drop down select in a custom metabox
- How do I share categories across multiple post types?
- 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
- Hide specific taxonomies from a taxonomy list using ‘get_object_taxonomies’
- Custom taxonomy (categories) on custom post type return no results
- Variable not working in WP_Query
- get_category_link() for custom post type does not include custom slug rewrite?
- Targeting categories in custom fields
- Alphabetically sort a taxonomy.php template by post title
- Custom Post Types not queried in Custom Taxonomy archives or Native archives
- Show Taxonomies with admin area for custom post type?
- Rewrite custom post type with taxonomy
- My custom taxonomy is only displaying 1 of 3 terms
- Changing CPT slug and taxonomy already registered in parent theme
- Custom Taxonomy Terms in Menu lead to which page?
- Using page title as a link to term archive
- How to display posttypes and taxonomy in standard posts, not in a separate label?
- “Menu order” being ignored when querying posts from a parent taxonomy with “include_children” set to true
- Get the taxonomy value in the post loop inside the archive page
- How to show related posts of category on post within custom posttype
- How to order taxonomy terms by most recent post?
- Custom taxonomy returns 404 even with saving permalinks
- Create custom post type categories
- How to add CSS class field in Custom Taxonomy?
- WP_Query for custom taxonomies showing posts from non-specified terms?
- Set a Default CPT taxonomy by taxonomy id
- Listing all custom posts having a specific taxonomy whatever the terms
- List all posts associated under custom taxonomy
- How to Use A Custom Post Type as Taxonomy for Another Custom Post Type
- How to manage a dynamic multi-level page hierearchy system?
- Display custom tax in “while” loop
- Categories manage
- Add other all taxonomies as meta boxes to custom post type
- How to get post type archive category title
- Custom post type category link + add to menu
- Showing taxonomies with terms that are attached to custom post
- Single taxonomy for different custom post types
- Custom Taxonomy page redirecting to 404 page
- Changing an item in drop down after 5 latest posts per taxonomy
- Filter Term By Parent Term – Custom Post Type
- Displaying WordPress posts from post and custom post type in custom taxonomy
- Custom post type taxonomy template and URL confusion
- Custom Taxonomy is disabled on Edit page
- Override “Parent” input for custom taxonomy
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- List all posts from custom post type by taxonomy
- Connecting multiple post types? Or linking “News” posts with “Game” posts how?
- Sort by Custom Post Type (Multiple Loop)
- Archive templates based on taxonomies
- How to display elements of different post types?
- How to display only taxonomies of custom post type in a page?
- Check if taxonomy is attached to at least one post in a post-type
- Looping taxonomy in taxonomy?
- Custom posts and custom taxonomies for many products and categories?
- get_the_term_list() wanting to loop through the returned values
- How do i get the taxonomy term name on the CPT archive page?
- Get all active posts that are tied to a custom taxonomy for a custom post type
- Show custom category archive as front page and remove taxonomy slug from urls
- How to list custom taxonomy terms without the hyperlinks?