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