WordPress has an extremely powerful, lesser known trick to easily let you view and edit a complete list of all the editable database settings for your site, including fields added by plugins. Enabling this menu for admin users is easy, just use the following code in your functions.php
file.
/**
* Enable the "All Settings" Menu
*
* Add an additional menu to the WordPress admin that show's a
* complete list of all the editable database settings for your
* WordPress site.
*/
function enable_all_settings_menu() {
add_options_page( __('All Settings'), __('All Settings'), 'administrator', 'options.php' );
}
add_action('admin_menu', 'enable_all_settings_menu');
Hopefully this speeds up your WordPress workflow.