This was hacked together very quickly. I don’t for sure if there will be problems with translation, but I be there would be.
function remove_menu_from_cpt() {
global $submenu;
$post_type="book";
$tax_slug = 'post_tag';
if (isset($submenu['edit.php?post_type=".$post_type])) {
foreach ($submenu["edit.php?post_type=".$post_type] as $k => $sub) {
if (false !== strpos($sub[2],$tax_slug)) {
unset($submenu["edit.php?post_type=".$post_type][$k]);
}
}
}
}
add_action("admin_menu','remove_menu_from_cpt');
It used the ‘book’ post type and post tags, because that was convenient for me to test, but it pretty obvious what needs to change to make this work for your case– I believe you need:
$post_type="my_custom_post_type_name";
$tax_slug = 'category';
Related Posts:
- What is WordPress Way to Add Content Blocks to Post and Reference them as Many to One Relationship?
- How can I fetch all the dates from custom fields from various different custom post types and show / list them at one place in ascending order?
- wp delete duplicate entries of custom post types every 15 minutes
- Set a Default CPT taxonomy by taxonomy id
- Adding specific custom fields (images) to post excerpt
- Displaying posts inside table having issues
- Getting 404 on child page with pre_get_posts() on custom posts
- My post loop needs to have 8 different post templates
- pricefilter without WooCommerce
- Automatic Set Category For A Custom Post Type
- Convert attribute woocommerce terms (taxonomy terms) in posts of custom post type
- How to Disable option of meta field if that option is selected for any other post in custom post type?
- Publish metabox postition?
- Need folder for CPT templates for eg: single-{post_type}.php
- Building Link List for Custom Tax
- CPT: multiple loops with different terms
- How to add custom supports for custom post types?
- Stored meta from attachment, video length?
- Limit posts per page depending on the size of a div?
- In the admin, how can you list thumbnails instead of titles for a custom post type?
- Update/publish custom post type with jQuery?
- Attempting to create custom “post” template, getting a 500 internal server error
- Is there a best practice, or typical way to do AJAX updating for data on a custom admin screen or post.php?
- Delete Post by User
- WordPress deletes custom posts instead of trash them
- save_post affect creation and deletion
- Link two different post using there post_id in post meta
- Permanent Custom Post Type
- Multiple WordPress Sites, Same Database but Filtered Content
- Help with Travel Guide Setup
- connect users to Custom post types
- Set a static page as a user profile page?
- creating a custom post template
- Custom Pagination based on Custom Post Type
- Problem to get the link of the default ‘post’ post type like the orther custom types
- Custom user roles
- WordPress query posts by custom post type not workng
- How to display all custom fields associated with a post type – IN THE ADMIN AREA?
- Change Background Color For CPT Template
- How to keep a CPT stick to specific position?
- One Post with different content, depending on a Page
- Create 2-layered dropdown menus for custom taxonomy and custom post type
- Custom Post Type
- Cant edit custom post type in WordPress dashboard
- Child Theme problems
- Static front page has page url not site url
- Registering an optional custom post type from a plugin
- WP_Query for CPT with filter by another WP_Query
- Advanced Custom Fields – Add Field to Specific Page [closed]
- How do I get a nested query to only display content that the main query outputed
- Add category slug as class attribute in a link array
- Sort by Custom Post Type (Multiple Loop)
- Custom metabox value not saving
- Selecting which pages to display custom post type on using checkbox
- Delete attachment with post
- Get link for feed of specific post type AND taxonomy
- Cannot modify a registered custom post type rewrite slug
- Display all post types together
- Get data from custom post type to another custom post type?
- Using get_terms() as shortcode attribute
- Displaying information from Custom Fields in template with Types?
- Collection of fields in a single post
- Add Excerpt On Quicksand Plugin
- Custom post type adding additional markup
- Turn post into simple slideshow
- Problems with a custom meta_box
- Make title field multiline in the add new custom post page?
- Select Menu for Custom post Type does not save
- Multiple Block Quotes without using HTML
- 2 language CPT content
- Is There A Way To Add Another Field To Custom Post Type (Not Custom Field/Meta)?
- What’s the best way to show custom post types? With page template it’s not perfect!
- How to apply order on custom taxonomy and custom meta key on custom post type
- How can i display on front page a movie that is atached in a post type
- Data won’t save on a straightforward metabox, what am I missing?
- Specifying Default Template for Hierarchal Custom Post Type [duplicate]
- Custom post type – columns order
- custom post-type query just returns two posts
- Custom post type functions.php if statement on action
- Add Image field to CPT
- Query multiple post of which one by taxonomy
- Inserting two categories
- How to add custom column to Custom post page list?
- How to make a template for a specific post of a custom post type?
- Bulk update custom post types
- How to delete unnecessary custom post types in the UI
- Set a Custom Post Type as a Homepage
- Exposing custom fields to the user in custom type post
- Slideshow/Gallery plugin based on WP Core Gallery [closed]
- Advise on Custom Taxonomies and Structure
- Page template with custom query instead of archive-xxx.php?
- How to create a job post by email parsing? [closed]
- ACF select box css color change
- show posts under custom post type with same autj
- Creating post custom field text area
- Delete old thumbnail when updating new
- cannot export data from CPT UI (books)
- How to automate the creation of advanced layout article/post
- REQUIRED: The theme uses the register_post_type() function, which is plugin-territory
- display posts, pages and custom post types from another wordpress site