Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created February 1, 2016 19:34
Show Gist options
  • Save jdcauley/1f4df4153417e2c5f20a to your computer and use it in GitHub Desktop.
Save jdcauley/1f4df4153417e2c5f20a to your computer and use it in GitHub Desktop.
options and menu
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