将 subsrt() 与方法 the_title() 一起使用
我试图对通过方法 the_title()
调用的标题进行子串。
我做了以下两件事,但都失败了。
第一次尝试:
第二次尝试:
他们都不起作用。当我使用第二次尝试
时,我仍然得到完整的标题。
注意:我正在尝试在 Wordpress
脚本上实现此功能,这也是为了我的 php 练习。
提前致谢。
I'm trying to substring the title which it is called via the method the_title()
.
Here are 2 things I did to do it but they both failed.
first try: <?php echo substr(the_title(),1,15) ?>
second try: <?php $new_title = the_title() ; echo substr($new_title, 1,15) ?>
They both didn't work. when I used the second try
I still get the full title.
Note: I'm trying to implement this on a Wordpress
script, also it's for my php practice.
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数
the_title()
不会将标题作为字符串返回,而是输出默认情况下。使用
the_title('','', 1)
使其返回标题或替代函数get_the_title()
代替。The function
the_title()
does not return the title as string but outputs it by default.Use
the_title('','', 1)
which makes it return the title or the alternative functionget_the_title()
instead.