web-dev-qa-db-ja.com

The_contentの一部を見せる方法は?

the_contentの20文字を表示したい

私はこれを試したが私にはうまくいかない。

<?php $content = '';
$content = the_content();
$count_content = strlen($content);
   if($count_content > 20 ) {
     $description = substr($content, 0,20,'UTF-8');
     echo $description ;
   }
   else {
     echo $content;
   }
?>
1
Wordpress User

Wordpress Codexのリファレンスページでthe_excerpt()を確認してください。

編集:それはまた、デフォルトの長さを超えて抜粋を短くするための例があります。

1
Stephen S.