本文が空の場合に、記事の抜粋やカスタムフィールドを表示させるといった使い方をしたかった。
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if($post->post_content=="") ://本文が空の場合は抜粋を表示 ?> <?php the_excerpt(); ?> <?php else : ?> <?php the_content() ;?> <?php endif; ?> <?php endwhile; ?> <?php endif; ?>