Skip to content

Instantly share code, notes, and snippets.

@DanielSantoro
Created July 7, 2014 15:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielSantoro/b386934f8502f0077dea to your computer and use it in GitHub Desktop.
Save DanielSantoro/b386934f8502f0077dea to your computer and use it in GitHub Desktop.
Show Options Page in "Settings" Section
// Adds "All Settings" link in the Settings Tab for Admins
function all_settings_link() {
add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'all_settings_link');
@DanielSantoro
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment