WordPress 截断标题

发布于 2024-11-09 21:05:22 字数 417 浏览 0 评论 0原文

我有这个工作...但是。

<?php
$thetitle = $post->post_title; /* or you can use get_the_title() */
$getlength = mb_strlen($thetitle);
$thelength = 25;
echo mb_substr($thetitle, 0, $thelength);
if ($getlength > $thelength) echo "...";
?>

只需说标题是“嘿,你好吗”,它就会在“嘿,”之后将其截断。

我想在逗号之后和结束引用之前删除一个空格。

有办法做到这一点吗?否则标题看起来像:

嘿,...

而不是:

嘿,...

谢谢

I have this working... but.

<?php
$thetitle = $post->post_title; /* or you can use get_the_title() */
$getlength = mb_strlen($thetitle);
$thelength = 25;
echo mb_substr($thetitle, 0, $thelength);
if ($getlength > $thelength) echo "...";
?>

Just say the title is "Hey, how are you" and it truncates it after "Hey, ".

There is a space I want to eliminate after the comma and before the end quote.

Is there a way to do this? Otherwise the title looks like:

Hey, ...

Instead of:

Hey,...

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

2024-11-16 21:05:22
echo trim(mb_substr($thetitle, 0, $thelength));

您只需要修剪空白即可。

echo trim(mb_substr($thetitle, 0, $thelength));

you just need to trim the white spaces.

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