Skip to content

Instantly share code, notes, and snippets.

@marcbacon
Created October 22, 2015 21:27
Show Gist options
  • Save marcbacon/9e00cf8030aceb91b2c3 to your computer and use it in GitHub Desktop.
Save marcbacon/9e00cf8030aceb91b2c3 to your computer and use it in GitHub Desktop.
Enable GOD MODE in WordPress - all settings saved in the database in one place
/**
* Enable GOD MODE - all settings saved in the database in one place
*/
function god_mode() {
add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'god_mode');
@toggo
Copy link

toggo commented Sep 13, 2024

Which directory we need to upload?

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