如何在Wordpress中显示the_title的第一个字母?

时间:2012-01-31 20:23:05

标签: php wordpress

我从其他帖子获得此代码,可在此处找到:Get first word in string php the_title WordPress

<?php $title = get_the_title(); // This must be!, because this is the return - the_title  
would be echo
$title_array = explode(' ', $title);
$first_word = $title_array[0];

echo $first_word;
?>

这应该抓住第一个单词但是如何修改它以显示Wordpress中the_title的第一个字母?

3 个答案:

答案 0 :(得分:3)

echo $first_word[0];

echo $title[0];

或许更有意义的事情:

echo substring($title, 0, 1);

请注意,您无法执行get_the_title()[0],因为这是语法错误。

答案 1 :(得分:3)

echo echo $title[0];echo substr($title,0,1);

答案 2 :(得分:0)

<?php

$title = get_the_title();
echo $title[0];   //print first letter


?>

另一个选择

<?php

$title = get_the_title();
echo substr($title,0,1);   //takes first character from $title and print //


?>