表示される記事がリスト上にない場合の表示の切り替え方法
<?php $l_posts = query_posts('post_type=recruit&showposts=-1');?> <?php if($l_posts):?> <?php while ( have_posts() ) : the_post(); ?> <li><span><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></span></li> <?php endwhile; ?> <?php else : ?> <li>現在採用は行っておりません。</li> <?php endif; ?> <?php reset_query;?>