Created
February 1, 2016 19:34
-
-
Save jdcauley/1f4df4153417e2c5f20a to your computer and use it in GitHub Desktop.
options and menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gated_modal_add_admin_menu(){ | |
add_options_page( 'Gated Modal', 'Gated Modal', 'manage_options', 'gated_modal', array($this, 'gated_modal_options_page') ); | |
// add_submenu_page( 'edit.php', 'Gated Modal', 'Gated Modal', 'manage_options', 'gated_modal', array($this, 'gated_modal_options_page') ); | |
add_submenu_page( 'content.php', 'Gated Modal', 'Gated Modal', 'manage_options', 'options-general.php?page=gated_modal', array( $this, 'gated_modal_options_page' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment