1

我需要在一个类别上显示一个标题,并且只有在 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; ?>
4

1 回答 1

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; ?>
于 2012-12-30T13:10:13.117 回答