我在我的wordpress主題的loop_single.php中輸出小寫的帖子標題。我的內容有非ASCII字符,所以我認爲以下方法可行:WordPress的:輸出小寫標題?
<?php echo mb_strtolower(the_title()); ?>
但它不起作用。它只是以書寫的方式輸出標題。
我在我的wordpress主題的loop_single.php中輸出小寫的帖子標題。我的內容有非ASCII字符,所以我認爲以下方法可行:WordPress的:輸出小寫標題?
<?php echo mb_strtolower(the_title()); ?>
但它不起作用。它只是以書寫的方式輸出標題。
如何只使用CSS?
h1.post-title { /* or whatever the selector is */
text-transform: lowercase;
}
,您是否試圖
<?php echo mb_strtolower(the_title(),'UTF-8'); ?>
如果別人是不斷努力爲今後非CSS相關的原因,這個環節是非常有幫助做到這一點。
https://wordpress.stackexchange.com/questions/39145/how-do-i-convert-a-pages-title-to-lower-case
get_the_title($後> ID);比the_title()更好;在這種情況下。
+1這對搜索引擎,禁用CSS和Lynx用戶的人來說更好。 :) – 2011-06-05 13:49:13