If you are manually registering your custom taxonomy via register_taxonomy then you can pass in arguments to control where the metabox appears.
In the example below setting show_ui
to false
would completely remove the metabox from the edit screen, the quick edit screen, and the admin menu. But if you set show_ui
to true
you can achieve more nuanced control by then using the show_in_quick_edit
and meta_box_cb
arguments (setting the later to false hides the metabox on the CPT edit screen as desired).
register_taxonomy( 'your_custom_taxonomy', array( 'your_custom_post_type' ), $args );
$args = array(
'show_ui' => true,
'show_in_quick_edit' => false,
'meta_box_cb' => false,
);
Related Posts:
- Custom Taxonomy as checkbox or dropdown
- wp_dropdown_categories in custom post type with custom taxonomy
- Changing the priority of a custom taxonomy’s metabox
- WP_List_Table Inside Metabox Not Working on Submit
- Find callback function for custom taxonomy metabox
- Unable to save custom taxonomy terms in a custom-built metabox
- How to select one major category (or custom taxonomy) for a custom post type?
- Custom Meta Boxes – Nonce Issue – Move to trash issue
- Show metabox in custom-post-template depending on taxonomy term?
- Displaying Metabox value (custom post type taxonomy)
- How can I display my custom metaboxes on a custom post template?
- Why are taxonomy terms not saving when using custom meta boxes with radio button taxonomy selectors?
- Metabox not show in categories custom post type cmb2
- How to make custom taxonomy into drop down select in a custom metabox
- Ordering values entered in Custom Taxonomies
- Listing custom terms in custom post meta
- Permalinks: custom structure for taxonomy – tags?
- Removing numerous Meta boxes from numerous CPTs
- Reusable metabox backend and frontend
- Get custom term meta problem on single post type
- Custom Post Type meta data getting deleted on bulk editing taxonomies
- PHP Warning with Custom Fields
- Custom taxonomy with custom post type archive page
- Add other all taxonomies as meta boxes to custom post type
- Custom meta-box for all custom post types
- Add different meta box based on taxonomy
- Getting custom taxonomy from custom post type
- How to modify URL structures in custom post types and taxonomies or terms
- Listing Pages With Checkboxes In a Metabox (and saving them)
- Counting Posts of a Given Post Type Having a Specific Taxonomy?
- Integrating an interactive map into a WordPress custom post type
- Pages, Custom Posts & Custom Taxonomy defining slug structure
- Category base to url in custom post type/taxonomy
- Get only parent terms from wp_get_post_terms
- How to: add option to add more checkboxes on custom post type
- Include taxonomy slug in url?
- WP 3.1 getting tax_query to work in query_posts()
- Is it possible to use pages to apply static content to each taxonomy level?
- custom post type and custom taxonomy url conflict
- Limit users by custom taxonomy and user roles
- WordPress Custom Post types and Taxonomy relationships best practices
- Display custom post type taxonomies as an archive page
- how to add extra meta box or textarea into custom post types
- Prevent custom taxonomy from being added to admin menu?
- A good strategy to print custom posts (offer) that are checked inside the metabox of a post?
- Custom Field Order by Last Name and First Name
- WordPress Genesis custom taxonomy archive shows 3 repeats of each post
- Custom taxonomy in URL showing 404
- Best way to save horoscope data
- Ajax Custom Post Filter is not filtering
- Need Output Custom Taxonomy from Custom Post Type
- Display all taxonomy terms, add class if term applies to current post
- How to duplicate entire custom post type
- How Can I Change the Custom Post Type Slug to the Taxonomy Slug in the URL?
- How to display Custom Taxonomy under Custom Admin Menu?
- Is it possible to use have_posts function to list custom post type posts inside a category?
- How to get the intersection of two terms both from different custom taxonomies
- Add Custom Post Type of specific Custom Taxonomy to regularly blog loop
- Custom post type permalink tag 404
- How to get list of taxonomy slugs ordered parents>childs?
- Checking if $_FILE isset for an array of file upload metaboxes
- Custom taxonomy and post type with same slug
- Custom Post Meta from custom metaboxes is randomly being deleted
- WordPress Custom Post Type – show only certain posts that have specific taxonomy set
- How to add editable/dynamic values to dropdown of a Custom Post Type Meta Box
- Template for custom post type when taxonomy is in the URL
- I am trying to get cutom post cout by month of current taxonmy term
- Query custom post types & Taxonomies and list them in a table on a page
- Nested Custom Taxonomies | Incorrect posts when querying
- How to query custom post type by two terms?
- Commas not displaying in implode
- add custom tags for custom post type in wordpress
- List of all posts in one custom post type in the edit screen of another
- Auto Generate Post Title from 2 Custom Fields
- Custom front-end form for adding post – Category problem
- i want to send email to user when the custom taxonomy is changed
- Issues with static pages redirecting towards home.php
- Custom post type template – add banner under heading
- Store a value in global scope after init hook is fired
- Custom post type single page returning 404 error when sharing archive url with custom taxonomy
- Grid slider with custom post type (how to filter with taxonomies?)
- Dropwdown: Get taxonomy terms from posts that share preselected terms from 3 other taxonomies
- Order posts by meta value hiding posts instead of re-ordering
- Why get_posts() returns empty array while I am trying to get posts from some specific taxonomies and work properly with others?
- Populate metabox dropdown with post title from another Custom Post Type (issues with wp_reset / global $post)
- Looping through custom taxonomy in one template
- Change the url of a custom post type to include taxonomy
- Meta box not saving
- How to query posts by meta keys AND under specific category?
- Shortcode display CPT Query only showing 1 post?
- Default taxonomy ‘post_tag’ added to CPT managing by custom role : nothing in the metabox
- Query Posts with Custom Taxonomy from a Custom Post Type
- Add multiple custom meta boxes to different custom post types
- How to show a custom taxonomy using a custom template
- Get Registered Custom Post Type to get All Custom Taxonomies
- Custom term link return 404 error
- Remove slug from Custom Category Permalink + dual-category permalinks
- Display ONLY ONE $term (Out of 4 terms) from a Custom Taxonomy and CPT
- Create a hierarchical list of posts that’s grouped and nested by category
- Show a wordpress custom post condtionally using a category term