有没有办法在动态元标题中大写一个单词?
基本上我在元标题中使用了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>
是否有方法可以将标题中的slug资本化?
非常感谢
保
答案 0 :(得分:0)
<?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>