将 subsrt() 与方法 the_title() 一起使用

发布于 2024-12-17 03:31:59 字数 378 浏览 2 评论 0原文

我试图对通过方法 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

划一舟意中人 2024-12-24 03:31:59

函数 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 function get_the_title() instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文