如果帖子很短,请删除“阅读更多”链接

时间:2012-04-19 07:23:47

标签: wordpress post

在主页上显示帖子时,如果帖子真的很短(比如,短于the_excerpt),有没有办法找到答案?这样我就会删除阅读更多链接,因为整个帖子已经显示。

1 个答案:

答案 0 :(得分:0)

简单获取摘录和发布单词/字符长度。 假设

if ($post_l > $excerpt_l)
{
//show read more
}
else
{
//shoe post without read more
}

PHP字数

function count_words($str) 
{
$no = count(explode(" ",$str));
return $no;
}
相关问题