WP_CONTENT文本长度并为全文显示‘More’

时间:2017-03-03 作者:Jami

(使用wordpress)我试图找出显示内容长度文本的php代码是什么,当有人点击时,可能会在内容下单击“更多”以显示我的全部内容(如图-enter image description here ) 但不幸的是,我无法做到这一点,这是我迄今为止尝试的代码:

$character == 40;

if (mb_strlen( get_the_content() < $character)

( have_posts() ) ( have_posts() ) : the_post();

the_content();

else{

the_content(\'Continue Reading...\')

}
我高度认为我的代码是不对的,所以如果有人需要注意并告诉我我的代码是否不正确,或者有其他方法可以做到这一点,我会非常感激:)。作为回报,谢谢!

1 个回复
SO网友:Deb

在您的循环中使用以下选项:

<p><?php $excerpt = get_the_content(); if (strlen($excerpt) > 255) { $excerpt = substr($excerpt, 0, 255) . "..."; echo $excerpt; } ?></p>

这里get\\u the\\u content()将获取所有内容,但substr函数将其减少到255,您可以输入任何想要的数字。

干杯

相关推荐