<?php
'post_type' => 'Products', // 投稿タイプのスラッグを指定
'post_status' => 'publish', // 公開済の投稿を指定
'posts_per_page' => 5 // 投稿件数の指定
);
$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(‘Y年n月d日’); ?><!– 日付 xxxx年xx月xx日表示 –>
<?php the_permalink(); ?><!– 記事リンク –>
<?php echo get_the_title(); ?><!– 記事タイトル –>
<?php the_content(); ?><!– 記事本文 –>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<!-- 投稿が無い場合の処理 -->
<?php endif; ?>