I figured this out by putting the main menu slug into the show_in_menu key of the custom post type array like so:
$args = array (
'labels' => $labels,
'hierarchical' => FALSE,
'description' => $title . 's',
'supports' => array( 'title' ),
'show_ui' => TRUE,
'show_in_menu' => 'squirrels_inventory',
'show_in_nav_menus' => TRUE,
'publicly_queryable' => TRUE,
'exclude_from_search' => FALSE,
'has_archive' => TRUE
);
Related Posts:
- Is It Possible To Add Custom Post Type Menu As Another Custom Post Type Sub Menu
- How Do I Programmatically Better Organize Custom Post Type Menus?
- Insert & order custom post types in/as submenu
- Possibilities for the edit.php admin panel? [closed]
- Placing a Custom Post Type Menu Above the Posts Menu Using menu_position?
- Custom Post Type Settings page, choose page to display archive
- Put update-like notification bubble on multiple CPTs menus for pending items
- Meta Boxes: ‘admin_init’ or ‘add_meta_boxes’ hook?
- Show Custom Taxonomy Inside Custom Menu
- Remove “posts” from admin but show a custom post
- Can I have Post Types under other Post Types in Admin menu?
- Is it OK to move admin menu items?
- Get page by template?
- How to give position to Submenu under custom post type
- Add Post type menu to another menu
- How do I create multiple post types in same menu section in WP-admin?
- Menu position (admin menu) of pages
- Using custom post types in submenu + custom title
- How to remove/hide elements from the admin menu?
- Remove Custom Post Type menu for non-administrator users.
- How do I code access to the built-in UI of a CPT when it’s placed as submenu of another CPT that is protected by role?
- Custom Post Type and taxonomies’s labels localization not working
- how to only have one custom post type post?
- How can I use a different default admin menu icon for custom post type?
- How to allow “Add New” capability of CPT when links to its UI are placed as a submenu?
- How to add new tab to admin list of posts and handle result list
- Displaying different custom post types under one admin menu
- Add management screens to post type
- wp_nav_menu() mark current item ancestor of custom post type
- How do I alter the position of a Custom Post Type menu item within my plugin admin menu?
- How to add custom post type under option page
- How to remove default tag and category options form a custom post type admin menu
- Prevent custom taxonomy from being added to admin menu?
- Trying to add script to specific admin page is not working
- Custom Post Type / Tab Limit
- rewrite custom post type slug in wp admin
- How do increase the amount of links shown down the left in the admin menu?
- submenu item edit a specific post
- Move custom post menu to under plugin admin menu
- With two custom post types, how to make one a child of the other in the admin menu?
- Using default WP menu functionality to link to custom post-type listing?
- Custom post types as sub menu pages and role capabilities issue
- How to display Custom Taxonomy under Custom Admin Menu?
- Able to edit custom post, but unable to create new custom post when within submenu. What capability is missing?
- Add Custom Post Type as top level menu item for a custom page
- Add Custom Post type menu to another menu in specific location
- How to remove post listing page for a custom post type
- Is there a way to establish parent/child relationship in WP menu links exclusively?
- 2 Different Custom Post Types in Submenu
- Ordering Submenu Pages in WP 3.1
- How to group navigation items in the admin panel
- Conflict between Capabilities and Menu Visibility with Custom Post Types
- Getting post attchment URL to populate a CPT Admin Page Column
- Using menu_position to add two entries between Dashboard and Posts
- How to add query args to links to CPT admin submenu
- Reusable metabox backend and frontend
- Multiple custom post types showing up in edit.php
- Top level menu position overwrites another entry
- admin_head-post.php only works after publish / update
- Subpages Permalinks Issues
- adding page types in menu
- Add custom posts to submenu automatically
- Display list of Custom Post
- Metaboxes inside Tab
- Restrict admin pages for specific user role
- Cannot include custom post item within a menu
- How can i redirect click to new admin page not to edit screen in post table
- Is there a way to display a custom post type menu item as “users” submenu?
- remove duplicate name submenu link from the custom post type
- Subset of Custom Post Type From Admin Menu Based on Meta Data
- How to override post-new.php with custom template
- Setting up a page to house certain types of posts
- Changing menu label to post name for custom post type
- Show custom taxonomy not in submenu
- Duplicate “Pages” Item in Admin Menu
- How to add elements to WordPress appearance->menu admin?
- How to avoid hardcoded text in a custom page template?
- Admin menu post type
- Limit number of posts under a post type?
- Custom Post Type Causing Admin Sidebar UI Issue
- Issue on CPT Custom Menu Position in WP
- Custom Taxonomy Showing in WP Menu
- Show custom taxonomies in admin panel under custom post type
- Custom post type in submenu with custom meta box as a title with custom html
- Add top-level menu pointing to a different custom post type?
- Separating a custom taxonomy from blog post-type
- How to make a single Menu Item call another Mega Menu for Custom Post Types and Custom Taxonomies?
- wordpress custom post type shows other cpt posts in admin menu
- Custom post types not showing in the admin menu on production, but shows locally
- Admin menu link with variable
- Can’t add custom post type archive page to menu
- Set relationship between custom_post_types
- How to add relationships between custom post types?
- Custom taxonomy query for a custom post type
- post_type_link filter causes 404 on the CPT page it’s used on
- Possible to change the slug of default post type?
- Insert Custom Post Type data from the front-end by a user
- Save and user submitted data from a form and display them in the wp backend
- Can I change the page of a Custom Post Type slug?
- How to turn custom-post archive into an overview page, listing the metadata of the posts?