Ever use that favorites menu up by the “Howdy” greeting? I never really did until I started customizing the options.
One of my favorites is adding a link to the master options page (wp-admin/options.php)
add_filter('favorite_actions', 'custom_favorites'); function custom_favorites($actions) { $actions['options.php'] = array('All Settings', 'unfiltered_html'); // this line adds an item return $actions; }
Or, remove the menu entirely
add_filter('favorite_actions', 'remove_favorites'); function remove_favorites($actions) { $actions = array(); return $actions; }