仅当WordPress中的某个类别中有帖子时才显示标题

时间:2012-12-29 21:27:11

标签: wordpress loops categories

我需要在类别上显示标题,并且只有在WordPress中的类别中有帖子时才能显示。标题不应放在每个帖子上。怎么解决?

我现在得到的代码:

<?php query_posts('category_name=onestar&showposts=5'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
         <div class="wrapper orangecolor">
             <article class="intro">
                 <h2><?php the_title(); ?></h2>
                 <div><?php the_content(); ?></div>
             </article>
         </div>
<?php endwhile; ?>
<?php endif; ?>

1 个答案:

答案 0 :(得分:0)

<?php query_posts('category_name=onestar&showposts=5'); ?>
<?php if ( have_posts() ) : ?>
    Put the header here
    <?php while ( have_posts() ) : the_post(); ?>
         <div class="wrapper orangecolor">
             <article class="intro">
                 <h2><?php the_title(); ?></h2>
                 <div><?php the_content(); ?></div>
             </article>
         </div>
    <?php endwhile; ?>
<?php endif; ?>