<?php
  $args = array(
    'post_type' => 'custom_test', // 投稿タイプのスラッグを指定
    'post_status' => 'publish', // 公開済の投稿を指定
    'order' => 'DESC',
    'posts_per_page' => 5 // 投稿件数の指定
  );
  $the_query = new WP_Query($args); if($the_query->have_posts()):
?>
<div id="custom">
<ul class="className">
<?php while ($the_query->have_posts()): $the_query->the_post(); ?>


<li><a href="<?php the_permalink(); ?>"><span class="day"><?php echo get_the_date( 'Y年n月d日' ); ?></span><span class="label">テスト</span><span class="text">
	<?php the_title(); ?></span></a></li>


<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul>
<div>
<?php else: ?>
	<!-- 投稿が無い場合の処理 -->
	<div>新着情報はありません。</div>

<?php endif; ?>