Your second parameter to register_taxonomy
should be the post type you want the taxonomy to apply to, or an array of post types.
register_taxonomy('blog_tags','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'blog_tags' ),
));
Will make this taxonomy show up for the built-in post
post type.
Related Posts:
- How to perform unit testing on proposed patches in Trac?
- Can the default “post tags” taxonomy be renamed?
- Custom columns for taxonomy list table
- Add ‘Description’ to taxonomy ‘Quick Edit’
- How to organize and cache additional data associated with terms?
- get a specific taxonomy term name
- get_terms() How many is TOO many?
- Child Terms not Displaying on the Taxonomy Term Admin Screen
- How to display child term of current term’s parent taxonomy?
- Sorting custom taxonomy causes menus error
- How to add terms to taxonomy with wp_insert_terms?
- Is there any difference between post in child term and child & parent terms?
- How to add automatically keyword to taxonomies when a post published, and assign them to the post
- Display Custom Taxonomy in Sidebar in Two Columns
- Create and move terms for taxonomies
- How can I remove links from the function “get term list”?
- Alphabetical order in taxonomy.php
- Get Term names from WP Term Object
- functions to create term and child terms
- base directories / URL
- Conditional tag affecting taxonomy term and its children?
- WordPress REST get all items without a taxonomy assigned
- Getting the parent from the wp_term_taxonomy
- How do I get the current tag out of a taxonomy?
- If search matches taxonomy
- Showing custom taxonomy column in taxonomy category listings immediately after create category
- Custom Field as Custom Taxonomy?
- Order wordpress taxonomy parent terms by their children count
- Plugin to assign parent category on multiple taxonomy terms
- how to show only last child terms of a taxonomy
- Modify the query method when adding category filtering function to the custom post list
- Check for taxonomy archive on search results page
- Use a CPT as a taxonomy
- How to list taxonomy terms in reverse order?
- need to get postthumnails from a post whithin a category custom post type
- Group Post by Custom Taxonomy 2 under Custom Taxonomy 1
- Individual post. Meta_key, taxonomy or post status for separation?
- Taxonomy archive page WP_Query does not return get_the_permalink() or get_permalink() value
- Ordering Taxonomies / Changing term_id
- How to restrict users in edit post that can just select exists tags? not add new
- Changing the default taxonomy key length
- Adding taxonomy terms based on custom field
- How to show taxonomy image instead of taxonomy name on a list
- benefits of the table ‘wp_term_taxonomy’
- How to save a multiple checkbox array into a non-hierarchical taxonomy
- Display a tag only if there is a description
- Query Custom Post Type by Taxonomy Meta Value
- `get_terms()` with `child_of` and `childless` combined
- Add text to the end of each list item in wp_list_categories
- Return Taxonomy Name for Each Term
- Taxonomy list names with lowercase
- echo term name outside the loop, using term slug
- What are these undocumented arguments for register_taxonomy?
- Dynamic filtering of posts with custom taxonomies
- Sorting tags by name
- Modify output of wp_dropdown_categories to add term IDs to each option
- How to get terms from a custom taxonomies after WordPress 4.5.0
- Search Media by taxonomy
- Get Taxonomy name from “registered_taxonomy” hook
- In two-category searches, where does WordPress save the title of the 2nd category?
- Show only first child in dropdown
- Display posts from tagchildren of taxonomy tagparents
- Custom Post Type + Custom Taxonomy = Archive Listing Page Problems
- Taxonomy term archive default loop returns 1 record instead of 8
- If has_term, load other theme
- Related terms – Terms that feature in post of current term
- Bug using wp_insert_term with switch_to_blog
- Select query with two and two related taxonomies
- Taxonomy Dropdown Question
- Customize menu link for taxonomy in WP menu
- Change searching from world level to first letter
- How To Query For An Empty Taxonomy Field
- Is possible hide hierarchical select dropdown created by jetsmartfilters? (only visual issue)
- Finding id of taxonomy by name in custom post type
- I want to edit the tags template by adding text that displays all tags from the listed posts
- Add specific content to a taxonomy results page
- Set the limit of taxonomy per page
- echo a tax term in loop
- I need posts within a taxonomy category that are tagged “featured” to show up first
- How to manage the links of a new taxonomy
- How to position taxonomy meta box on page
- Same page for startpage and archive?
- Get taxonomy url, name, post count & image
- Rewrite permalink to include multiple taxonomies
- taxonomy terms are not populating select tag options
- Recent posts by taxonomy and filter by tag
- Related Posts by taxonomy using Advance Custom Fields Plugin
- Organize content by month? SQL statement?
- Display Custom Column in CPT Taxonomy
- How to Display Child Taxonomy Posts
- Output Taxonomy Title as Part of Result
- Help me add Taxonomy to byline
- Filter custom taxonomy table
- Add a tag like a post
- How Can I List Categories by Date?
- Custom Taxonomy Page redirect 404
- Why is taxonmy-[taxonomyname].php not working?
- Taxonomy link not working (leads to 404 page)
- Adding Advanced Custom Fields to posts without hyperlinks
- is there a hook filter to get custom fields for taxonomy name instead of the default field?