長い記事を出力する次のコードがあります。
<?php the_content(); ?>
記事の抜粋(最初の29語)のみを表示し、HTMLを削除して、最後に「...more」を追加しようとしています。
<?php substr(the_content, 29) ?>
私はこれを試しましたが、長さには影響しません。
何か助けはありますか?ありがとう
必要なのはthe_excerpt です
<?php the_excerpt(); ?> //and you could check the doc how to set the length.
<?php echo substr(get_the_content(), 0, 29); ?>
the_contentはコンテンツを出力し、get_the_contentはそれを取得します。