我究竟做错了什么?
$title = get_the_title();
$firstLetter = $title[0];
$title[0] = '<span class = "wrapBlue">' . $firstLetter . '</span>';
echo $title; // comes out with weird switched around string?
get_the_title()
是一个wordpress功能。
var_dump on $title
给出一个长度为 21 的字符串。
var_dump on $firstLetter
给出一个包含长度为 1 的正确字符的字符串