$post_type,
'post_status' => 'publish',
);
$query = new WP_Query($args);
// 投稿をループ処理
if ($query->have_posts()) :
while ($query->have_posts()) :
$query->the_post();
// 投稿タイトルを表示
echo the_title();
// 投稿本文を表示
the_content();
endwhile;
endif;
?>