Am I losing my mind? I seem to recall that somewhere in the Admin back-end there was a page that basically listed out all the fields within wp_options. Does this ring a bell to anyone else? I thought maybe it was a MU thing but it's not there either. At one point I seem to recall running into a page where you could edit the options directly (without using a DB client). No big deal if there isn't but I swear I've seen such a beast, and I don't think it was through a plugin...

link|improve this question

78% accept rate
feedback

2 Answers

up vote 1 down vote accepted
// Adds 'ALL' options page - only accessible for admins and custom roles that have the 'manage_options' capability.
function wpse31956_all_settings_page() 
{
    add_options_page( __('All'), __('All'), 'manage_options', 'options.php' );
}
add_action( 'admin_menu', 'wpse31956_all_settings_page' );

Note: As I just saw that me an @ChipBennet posted at nearly the same time: The answer is the same.

link|improve this answer
Nice one. Thanks! – Tom Auger Apr 24 at 18:02
feedback

Try:

http://example.com/wp-admin/options.php

Which lists all of the site's options.

link|improve this answer
Was this available in the sidebar navigation at some point and was recently removed? I doubt I would have randomly typed that URI in... – Tom Auger Oct 26 '11 at 13:03
1  
Not as far as I know; but it's a well-known (and oft-mentioned) "power trick" to append options.php to the end of the /wp-admin/ URL. – Chip Bennett Oct 26 '11 at 13:05
Thanks, Chip, for this cool trick! +1 – Tom Auger Apr 24 at 18:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.