hanuman6
7/13/2013 - 11:57 AM

特定のIDの記事内容を取得

特定のIDの記事内容を取得

<?php $loop = new WP_Query('page_id=4'); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post();
     /* ループ開始 */ ?>
          <?php the_content(); ?> 
<?php endwhile; ?>