Skip to content

Instantly share code, notes, and snippets.

@KnightAlex
Created February 23, 2015 13:41
Show Gist options
  • Select an option

  • Save KnightAlex/6445febe279909cc47b2 to your computer and use it in GitHub Desktop.

Select an option

Save KnightAlex/6445febe279909cc47b2 to your computer and use it in GitHub Desktop.
Change text for WordPress 'select category' dropdown widget
function ChangeSelectTitle($cat_args){
$cat_args['show_option_none'] = __('My Category');
return $cat_args;
}
add_filter('widget_categories_dropdown_args', 'ChangeSelectTitle');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment