Scroll Down
/**
* code #9 - display custom admin menu with all links
* source - http://wordpress.stackexchange.com/a/1614/8922
*/
function full_admin_settings_links() {
add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'full_admin_settings_links');
If you would like direct access to all of the administrator’s settings then definitely try out this brief snippet of code. For power users who know exactly where they need to go it’s a lot easier navigating the backend. But it’s also easy enough to comment out or even delete to revert back.