• Resolved biscuitier0

    (@itsaskew)


    Hi. This is a great plugin!

    I wonder id you can help with the below?

    I have a series of custom post types that I have nested in a custom menu using the below code. I have then added the custom menu slug to the ‘show in menu’ settings of the custom post type.

    However, I also have a custom taxonomy associated with all of these custom post types (shared) that I now cannot see, I also want to set these custom post types to support native tags and for those to show underneath the taxonomies.

    Do you have any idea how this can be done?

    add_action( 'admin_menu', 'register_my_page' ); 
    function register_my_page() { 
    add_menu_page( 
    	'Storytellers',
    	'Storytellers',
    	'edit_others_posts',
    	'storytellers_menu',
    	'function() { echo ‘storytellers page’ }',
    	'dashicons-arrow-right',
    	6
    	);
    }
Viewing 1 replies (of 1 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Honestly not sure how to go about that and if it’s even possible. I know it’s possible to nest post types items, but I’ve always noticed most submenus that’d show for the post type “disappear” and don’t also get added, including taxonomy management links.

    So this is definitely not something we specifically have any functionality around or an answer to sadly.

Viewing 1 replies (of 1 total)
  • The topic ‘Show Custom Taxonomy in Custom Admin Menu’ is closed to new replies.