hanuman6
7/13/2013 - 11:52 AM

基本post

基本post

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
/* ループスタート! */
<?php the_title(); ?>
<?php the_content(); ?>
/* ここまでをループ */
<?php endwhile; ?>
<?php else : ?>
/* 記事がなかった場合の記述 */
<?php endif; ?>