WordPressで記事の本文を表示するには、次のように書きます。
<?php the_content(); ?>
the_content関数はループ内で使うので、次のように使うのが一般的です。
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php while(have_posts()): the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
記事の本文を取得する
記事の本文を出力せずに、文字列として取得したい場合にはget_the_content()関数を使います。
<?php $content = get_the_content(); ?>
Leave a Comment