Hi ElwoodP,
Thank you for your reply and your code.
I’m sorry I was explain not enough.
For how to manually add the menu of Sidemenu,
1: If you want to add to ignore the WP Admin UI Customie,
You can add it to change the priority and URL.
e.g.
function my_admin_menu() {
global $submenu;
$submenu['edit.php'][] = array('Menu Title', 'manage_options', 'edit.php?post_type=url_to_cool_stuff');
}
add_action('admin_head', 'my_admin_menu', 100);
Ignore settings screen
2: If you want to setting with the WP Admin UI Customize,
You can add it to change the action hook and function of add menu.
e.g.
function my_admin_menu() {
add_posts_page( 'Page Title', 'Menu Title', 'manage_options', 'url_to_cool_stuff', 'url_to_cool_stuff' );
}
add_action('admin_menu', 'my_admin_menu');
With screen
I can not be still, add to “External Links”.
If you have any questions, please free feel to ask.
Thanks,
gqevu6bsiz