如果帖子非常短,请删除阅读更多链接

问题描述:

在主页上显示帖子时,如果帖子确实很短(比如说短于the_excerpt)是否有办法查明?这样,我会删除阅读更多链接,因为整个帖子已被显示。如果帖子非常短,请删除阅读更多链接

简单得到摘录并发布单词/字符长度。 假设

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; 
}