1. ホーム
  2. php

[解決済み] ワードプレスのページ内容を表示するにはどうすればよいですか?

2022-02-14 20:25:54

質問内容

これは本当に簡単なことなのですが、なぜか思い浮かびませんし、今日はgoogleも助けてくれません。

ページの内容を出力したいのですが、どうすればいいですか?

これかと思いました。

<?php echo the_content(); ?>

解決方法は?

@Marc B コメントありがとうございます。これを発見するのに役立ちました。

<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>