Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在主页显示帖子时,如果帖子真的很短(例如,短于the_excerpt),有没有办法找出来?这样我会删除阅读更多链接,因为整个帖子已经显示。
the_excerpt
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; }