Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WordPress 中的默认下拉类别小部件默认显示文本“选择类别”作为第一个选项,是否有一种简单的方法可以在不使用插件或修改核心 WordPress 文件的情况下更改此文本?
functions.php在您的样式表目录中添加一个类似这样的函数:
functions.php
function ChangeSelectTitle($cat_args){ $cat_args['show_option_none'] = __('My Category'); return $cat_args; } add_filter('widget_categories_dropdown_args', 'ChangeSelectTitle');
我的类别 是您想要的新标题,而不是Select Category
Select Category