Wordpress:以小写形式输出帖子标题?

时间:2011-06-05 13:41:03

标签: wordpress wordpress-theming

我正在使用我的wordpress主题的loop_single.php来输出小写的帖子标题。我的内容有非ascii字符,所以我认为以下内容可行:

<?php echo mb_strtolower(the_title()); ?>

但它不起作用。它只是按照它的方式输出标题。

3 个答案:

答案 0 :(得分:1)

你试过

吗?
<?php echo mb_strtolower(the_title(),'UTF-8'); ?>

答案 1 :(得分:1)

如何使用CSS?

h1.post-title { /* or whatever the selector is */
    text-transform: lowercase;
}

https://developer.mozilla.org/en/CSS/text-transform#Values

答案 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()更好;在这种情况下。