次のコードで投稿の配列を表示しています。表示する投稿がない場合、「表示する投稿がありません」などの通知を印刷したい。これはどのように行うことができますか?
<?php
while ( have_posts() ) :
the_post();
?>
<h1><?php the_title();?></h1>
<section class="intro">
<?php the_content(); ?>
</section>
<?php endwhile; // end of the loop. ?>
<h2>Latest Events</h2>
<?php
query_posts( array( 'category__and' => array(8) ) );
if ( have_posts() ) while ( have_posts() ) :
the_post();
?>
<article class="events clearfix">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<div class="date">
<span class="month"><?php the_time('M') ?></span>
<span class="day"><?php the_time('d') ?></span>
</div>
</article>
<?php endwhile; ?>