how to set url in admin option page
You can only this link when you register a new post type with the right argument to show it in the admin ui and be available in the menu : $args = array( ‘show_ui’ => true, ‘show_in_menu’ => true, } register_post_type(‘invitation_code’, $args); There’s no really need to have “page=invitation_code” as you are in an edit … Read more