我在问题中搜索了“标题长度”,但结果都是关于设置最大长度和限制以及。。
我想做的是创建一个if语句,以确定帖子标题是否超过68个字符,如果超过了,则添加smaller
类到it。
我这样写代码:
<?php
$permaLength = strlen(the_title());
?>
<h2 class="<?php if ($permaLength > 68) {echo \'smaller\';} ?>">
<a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a>
</h2>
但看起来
the_title()
函数并没有返回值,而是返回。是否有其他方法获取标题长度?