<?php echo substr(get_the_title(), 0,42) ;?>
Notice the echo and the get_the_title() 这会让你得到你想要的结果。
<小时>
Here\'s an alternative to consider:
我总是发现字符限制会导致奇怪的分词,用户会感到困惑。
WordPress有一个名为wp_trim_words
您可以使用的。
<?php echo wp_trim_words( get_the_title(), 5, \'...\' ); ?>
5-要显示的字数
“…”-显示最后一个单词后的线索(因此您可以使用“-cont.d”或“…read more”或其他内容)