我正在使用我的wordpress主题的loop_single.php来输出小写的帖子标题。我的内容有非ascii字符,所以我认为以下内容可行:
<?php echo mb_strtolower(the_title()); ?>
但它不起作用。它只是按照它的方式输出标题。
答案 0 :(得分:1)
<?php echo mb_strtolower(the_title(),'UTF-8'); ?>
答案 1 :(得分:1)
如何使用CSS?
h1.post-title { /* or whatever the selector is */
text-transform: lowercase;
}
答案 2 :(得分:0)
如果其他人在将来因非CSS相关原因尝试这样做,这个链接非常有帮助。
https://wordpress.stackexchange.com/questions/39145/how-do-i-convert-a-pages-title-to-lower-case
get_the_title($后&GT; ID);比the_title()更好;在这种情况下。