Horje
How to Enable Hidden Administration Feature displaying All Site Settings

This little piece of code does something pretty cool. It will add an additional option to your settings menu with a link to "all settings" which will show you a complete list of all the settings you have within your database related to your WordPress site. The code below will only made this link visible to an administrator user and hide it for all other users.


Full Fucntions code to appear all hidden Settings Wordpress

Just copy and past following codes to yourdomain.com/wp-content/themes/activated-theme/fucntions.php most below. Tested on: WordPress 3.1 RC3
functions.php
Example: PHP
// CUSTOM ADMIN MENU LINK FOR ALL SETTINGS
   function all_settings_link() {
    add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
   }
   add_action('admin_menu', 'all_settings_link');





Related Articles
How to Enable Hidden Administration Feature displaying All Site Settings Wordpress Administration Shortcode
How to change the Login Logo & Image URL Link Wordpress Administration Shortcode
How to Remove Update Notification for all users except ADMIN User Wordpress Administration Shortcode
How to Remove Default WordPress Meta Boxes Wordpress Administration Shortcode
How to Remove "Wordpress" to "WordPress" filter Wordpress Administration Shortcode
How to Customize the order of the administration menu Wordpress Administration Shortcode
How to Add Thumbnails in Manage Posts/Pages List Wordpress Administration Shortcode

Single Articles
Full Fucntions code to appear all hidden Settings WordpressWordpress Administration Shortcode

Read Full:
Wordpress Administration Shortcode
Category:
Web Tutorial
Sub Category:
Wordpress Administration Shortcode
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
53



Share on: