有没有一种方法可以在动态元标题中大写一个单词?
基本上,我在元标题中使用了slug,但是它是小写的。我只想用一个词大写,但是我不确定这样做的最佳方法吗?
<title><?php $taxonomy = 'propertytype'; $queried_term = get_query_var($taxonomy);$term = get_term_by( 'slug', $queried_term, $taxonomy ); echo $term->slug; ?> the rest of the thitle goes here</title>
有没有一种方法可以将标题中的首字母大写?
非常感谢
保罗
最佳答案
<?php
$taxonomy = 'propertytype';
$queried_term = get_query_var($taxonomy);
$term = get_term_by( 'slug', $queried_term, $taxonomy );
$cap = ucwords($term->slug);
?>
<title><?=$cap?>the rest of the thitle goes here</title>
关于css - 在动态元标题中大写一个单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10384045/