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
抜粋を取得し、単語/文字の長さを投稿するだけです。仮定する
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; }