Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 php 计算我的 Wordpress 帖子标题中的字符,如果超过 50,则在第 50 个字符所在的单词之前插入一个中断。
为此,我认为wordwrap是最好的选择?
我在我的模板中使用以下代码,它只是在不插入中断的情况下回显标题。有任何想法吗?
<?php $text = the_title_attribute(); $newtext = wordwrap($text, 50, "<br />\n"); echo $newtext; ?>
解决了 - 我需要使用 get_the_title(); 反而。
工作代码:
<?php $text = get_the_title(); $newtext = wordwrap($text, 50, "<br />\n"); echo $newtext; ?>