PluginProbe
Snippet Shortcodes / 1.4
Snippet Shortcodes v1.4
5.2.1 5.2 5.1.8 5.1.6 5.1.7 5.1.5 trunk 1.0 1.1 1.2 1.3 1.3.1 1.4 1.5 1.5.1 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 2.0 2.0.1 All 74 releases
shortcode-variables / includes / hooks.php

hooks.php in Snippet Shortcodes 1.4, at includes/hooks.php

18 lines 938 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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