我正在通过以下代码显示一系列帖子。当没有要显示的帖子时,我想打印一个通知,例如“没有要显示的帖子”。如何才能做到这一点?
<?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; ?>