Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Created November 19, 2016 08:23
Show Gist options
  • Save sudipbd/5e9bba177723966cc29ba2e191b7ce12 to your computer and use it in GitHub Desktop.
Save sudipbd/5e9bba177723966cc29ba2e191b7ce12 to your computer and use it in GitHub Desktop.
WordPress widget default category text change
<?php
function ChangeSelectTitle($cat_args){
$cat_args['show_option_none'] = __('USA Poker Rooms');
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