我正在尝试通过方法the_title()
对它所调用的标题进行子串。
我做了两件事,但都失败了。
首先尝试:<?php echo substr(the_title(),1,15) ?>
第二次尝试:<?php $new_title = the_title() ; echo substr($new_title, 1,15) ?>
他们都没有用。当我使用second try
时,我仍然可以获得完整的标题。
注意:我正在尝试在Wordpress
脚本上实现此功能,这也适用于我的PHP练习。
先谢谢。
答案 0 :(得分:1)
函数the_title()
不会将标题作为字符串返回,而是默认输出。
使用the_title('','', 1)
使其返回标题或替代函数get_the_title()
。