0

有没有办法在动态元标题中将一个单词大写?

基本上我在元标题中使用了一个 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 大写?

非常感谢

保罗

4

1 回答 1

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>
于 2012-04-30T13:17:23.440 回答