0

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

4

1 回答 1

0

Simple get the excerpt and post word/char length. Suppose

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

PHP word count

function count_words($str) 
{
$no = count(explode(" ",$str));
return $no;
}
于 2012-04-19T07:35:31.170 回答