Code
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 _category_dropdown_filter( $cat_args ) { | |
$cat_args['show_option_none'] = __('商品カテゴリを選択'); | |
return $cat_args; | |
} | |
add_filter( 'widget_categories_dropdown_args', '_category_dropdown_filter' ); | |
?> |
Screen shot
Note
Description | ウィジェットで追加したドロップダウン式のカテゴリリストで表示される「カテゴリから選択」のテキストを任意のものに変更する |
---|---|
WordPress Ver. | 3.3.1 |
Via | Change “select category” name within category dropdown widget |