// 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\' );
注意:正如我刚刚看到我在几乎同一时间发布了一个@ChipBennet:答案是一样的。