如何转换 WordPress 标记每个单词大写的首字母
How to Convert WordPress Tags first letter in capital of every word
有没有把每个WordPress标签的首字母转成大写的主题功能代码。由于我有一个通过 API 生成标签的 wordpress 插件,问题是该插件总是以小写形式生成标签。我正在寻找一个主题功能代码,它创建所有首字母大写的标签。
通过 API 插件生成的标签
beautiful, cute, eye, face, fashion, girl, glamour, hair, lips
我需要以下输出:
Beautiful, Cute, Eye, Face, Fashion, Girl, Glamour, Hair, Lips
试试这个
add_filter('get_term', 'ucfletter_tags', 10, 2);
function ucfletter_tags($term, $taxonomy) {
if ($taxonomy == 'post_tag') {
$new_name = ucfirst($term->name);
$term->name = $new_name;
}
return $term;
}
有没有把每个WordPress标签的首字母转成大写的主题功能代码。由于我有一个通过 API 生成标签的 wordpress 插件,问题是该插件总是以小写形式生成标签。我正在寻找一个主题功能代码,它创建所有首字母大写的标签。
通过 API 插件生成的标签
beautiful, cute, eye, face, fashion, girl, glamour, hair, lips
我需要以下输出:
Beautiful, Cute, Eye, Face, Fashion, Girl, Glamour, Hair, Lips
试试这个
add_filter('get_term', 'ucfletter_tags', 10, 2);
function ucfletter_tags($term, $taxonomy) {
if ($taxonomy == 'post_tag') {
$new_name = ucfirst($term->name);
$term->name = $new_name;
}
return $term;
}