Created
November 19, 2016 08:23
-
-
Save sudipbd/5e9bba177723966cc29ba2e191b7ce12 to your computer and use it in GitHub Desktop.
WordPress widget default category text change
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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