24 May 2014

Enable Hidden Admin Feature Displaying ALL Site Settings - Wordpress

Here is little Snippets of WordPress that I'd like to share with you.

Following code will help you to display complete list of all the settings from `options` table of database.

You can see this page in "wp-admin --> Setting --> All Settings".
function enable_all_settings_link()
{
 add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'enable_all_settings_link');
Have Fun!

No comments:

Post a Comment