Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active February 8, 2016 07:20
Show Gist options
  • Save hsleonis/48dd3f55055204d34190 to your computer and use it in GitHub Desktop.
Save hsleonis/48dd3f55055204d34190 to your computer and use it in GitHub Desktop.
Create custom submenu in wordpress admin
<?php
/*
Reference:
https://developer.wordpress.org/reference/functions/add_submenu_page/
http://shibashake.com/wordpress-theme/add_menu_page-add_submenu_page
https://premium.wpmudev.org/blog/creating-wordpress-admin-pages/
*/
add_action( 'admin_menu', 'themeaxe_menu' );
function themeaxe_menu() {
add_submenu_page(
'edit.php?post_type=cjsupport', // Parent page url
__('Overview'), // Menmu title
__('Overview'), // Menu title
'manage_options', // Capability
dirname(__FILE__).'/admin.php' // Submenu page
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment