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
- Can’t retrieve custom post type taxonomy term to custom post type editor
- WordPress uses url different from defined in rewrite arg of custom post type
- Custom Post Type Loop with Query Var
- Full Custom Post Type List Organised by two Taxonomies
- Is it possible to use have_posts function to list custom post type posts inside a category?
- Repeatable Fields Metabox with Textarea (or wp_editor)
- How to use TinyMCE Editor for one of my custom post meta field?
- Display correctly using metabox.io
- WordPress Doesn’t Generate Taxonomy Archive
- URL rewriting for CTP assigned entity
- Create Connection Between two post types
- How to have this permalink structure: post_type/postname/custom_inner_page
- Suggested Post and Taxonomy structure
- pre_get_posts for custom page builder meta box
- How do I require the specification of term in a custom post type and custom taxonomy?
- Disable closing on metaboxes
- Custom Post, set object Taxonomy terms in plugin
- Query Custom Post Type Taxonomy term with multiple parameters
- Display post content with respect to its title?
- Hierarchy and access control for Custom Post Types (CPT)
- Auto Complete Search
- Custom Post Type Pagination Paginates Only in URL Structure
- Set post terms for multiple posts
- Load Custom_post_type categories post with ajax
- Custom Permalink Structure for Custom Post Type, Custom Taxonomy, Under a page
- Custom taxonomy returns 404
- Get terms that contain posts that in turn belong to other terms?
- WP-API select custom taxonomy when creating a post
- Best method to make posts searchable, sortable and filterable – custom field, tag or category?
- First custom field value (out of several) displayed twice after query
- Custom post with more than one custom taxonomy
- How to get custom posts sub category link
- Custom while loop for hierarchical display of a taxonomy
- Terms showing up in object cache on unrelated pages
- Show Custom Post Type meta boxes only on Page Edit
- Lists custom taxonomy terms that has specific custom field value assigned to the term (not post)
- Get the taxonomy of a post hierarchically
- Cannot save CPT meta box
- Adding custom taxonomy in same menu place with two custom post types
- Including taxonomy term before post type breaks top level pages
- Adding Page Templates to post but it ignored it
- Parent Page and Breadcrumb URL’s for Custom Post Types Not Working
- Correct procedure for advanced permalinks
- Permalinks: custom post type -> custom taxonomy -> post
- List Taxonomy Terms based on another Taxonomy
- How to get the intersection of two terms both from different custom taxonomies
- Create a Dropdown from Custom Post Type
- Translating custom post type metaboxes [closed]
- Adding a metabox on a CPT’s submenu page
- CPT’s with landing page instead of archive – Url Rewrite?
- Template for all categories of a custom post type?
- How to change permalink to include custom post type
- Add Custom Post Type of specific Custom Taxonomy to regularly blog loop
- posttype/taxonomy/term archive page 404 error
- How to add attributes to taxonomies that may be different from post to post?
- Display taxonomy terms, child terms and posts in a template
- Custom post type, permalinks, taxonomies and blog posts
- Fixed values for same post translations
- How to group posts and get a mixed posts and groups view?
- Custom post type permalink tag 404
- How to Add multiple instance of meta box to custom post type
- How to make front end form only accept certain values
- How to get list of taxonomy slugs ordered parents>childs?
- Custom Post Type by Taxonomy
- Deleting taxonomy terms and relationships on a custom post_type when a user is deleted
- Custom post type / taxonomy rewrite archive page 2 gives 404
- Use custom walker to add taxonomy terms to main nav menu
- Post format alternative?
- WP_Query orderby and tax_query
- Permalink structure with custom taxonomies and custom post type like /parent-tax/child-tax/custom-post-type-name (with no base name)
- browse by category and tags?
- permalink /category/post-name with custom post type and taxonomy
- Using POST method in meta box, no results
- Taxonomy structure help