Skip to content

Instantly share code, notes, and snippets.

@tahirtaous
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tahirtaous/d0e75a6522ec42b0f1cc to your computer and use it in GitHub Desktop.
Save tahirtaous/d0e75a6522ec42b0f1cc to your computer and use it in GitHub Desktop.
See all database related WordPress setting
// CUSTOM ADMIN MENU LINK FOR ALL SETTINGS Under Setting Menu
function all_settings_link() {
add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'all_settings_link');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment