How to give position to Submenu under custom post type
If you connect your functions with proper hooks your submenu page will be displayed after your post type and taxonomy. Take a look at my example: /** * Register event post type * * Function is used by init hook */ function wpse_288373_register_event_post_type() { $labels = array( ‘name’ => __( ‘Events’ ), ‘singular_name’ => __( … Read more