B l o g

TOP / blog / wordpress / wordpressのサブループ

wordpressのサブループ

<?php
  $args = array(
'post_type' => 'Products',
'posts_per_page' => 5,
'post_status' => 'publish',
'post__not_in' => array( 11,22,33,44,55 )
 );
  $the_query = new WP_Query($args); if($the_query->have_posts()):
?>
<?php while ($the_query->have_posts()): $the_query->the_post(); ?>
<?php echo get_the_date(); ?>
<?php the_permalink(); ?>
<?php echo get_the_title(); ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<!-- 投稿が無い場合の処理 -->
<?php endif; ?>