WordPress Admin back-end – advanced options page?

// 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.

Leave a Comment