1

長い記事を出力する次のコードがあります。

<?php the_content(); ?>

記事の抜粋(最初の29語)のみを表示し、HTMLを削除して、最後に「...more」を追加しようとしています。

<?php substr(the_content, 29) ?>

私はこれを試しましたが、長さには影響しません。

何か助けはありますか?ありがとう

4

2 に答える 2

2

必要なのはthe_excerpt です

<?php the_excerpt(); ?> //and you could check the doc how to set the length.
于 2012-06-08T08:27:14.433 に答える
0
<?php echo substr(get_the_content(), 0, 29); ?>

the_contentはコンテンツを出力し、get_the_contentはそれを取得します。

于 2012-06-08T08:26:46.740 に答える