hanuman6
7/13/2013 - 11:58 AM

複数のカスタム投稿を表示

複数のカスタム投稿を表示

<?php
$args = array(
     'post_type' => array('カスタム投稿タイプ名1', 'カスタム投稿タイプ名2'), 
     'posts_per_page' => 5,

); ?>
<?php $my_query = new WP_Query( $args ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
 <h1 class="entry-title"><?php the_title(); ?></h1>
 <?php the_excerpt(); ?>
<a class="more-link" href="<?php the_permalink() ?>">詳しく見る</a>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>