| 1 |
<?php |
| 2 |
|
| 3 |
defined('ABSPATH') or die('Jog on!'); |
| 4 |
|
| 5 |
function sh_cd_build_admin_menu() |
| 6 |
{ |
| 7 |
add_menu_page( SH_CD_PLUGIN_NAME, SH_CD_PLUGIN_NAME, 'manage_options', 'sh-cd-shortcode-variables-main-menu', 'sh_cd_user_defined_page', 'dashicons-editor-kitchensink' ); |
| 8 |
|
| 9 |
// Hide duplicated sub menu (wee hack!) |
| 10 |
add_submenu_page( 'sh-cd-shortcode-variables-main-menu', '', '', 'manage_options', 'sh-cd-shortcode-variables-main-menu', 'sh_cd_user_defined_page'); |
| 11 |
|
| 12 |
// Add sub menus |
| 13 |
add_submenu_page( 'sh-cd-shortcode-variables-main-menu', __('Your Shotcodes'), __('Your shortcodes'), 'manage_options', 'sh-cd-shortcode-variables-user-defined', 'sh_cd_user_defined_page'); |
| 14 |
add_submenu_page( 'sh-cd-shortcode-variables-main-menu', __('Premade Shortcodes'), __('Premade shortcodes'), 'manage_options', 'sh-cd-shortcode-variables-sub-premade', 'sh_cd_premade_shortcodes_page'); |
| 15 |
} |
| 16 |
add_action( 'admin_menu', 'sh_cd_build_admin_menu' ); |
| 17 |
|
| 18 |
|