0

我在 Wordpress 中有一个页面,仅显示“报纸”类别的帖子。现在,帖子按降序排列(我认为,如果这是默认值),最新的在顶部。

这是我拥有的代码:

<?php $my_query = new WP_Query('category_name=newspaper&posts_per_page=-1'); ?>

<?php if (have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="post">
<!--<h3><?php the_title(); ?></h3>-->
<?php the_content('Read the rest of this entry &raquo;'); ?>
<div class="clear"></div>
</div>
<?php endwhile; endif;?>

我想知道是否可以在顶部显示带有“特色”标签的帖子,而之后显示所有其他没有特色标签的帖子。

谢谢!阿米特

4

1 回答 1

0

好的,这就是我暂时做的。我不依赖特色标签,而是依赖特色报纸类别。这不完全是我想要的样子,但现在可以这样做:

<?php $my_query = new WP_Query('category_name=newspaper&posts_per_page=-1'); ?>
<?php $my_featured = new WP_Query('category_name=featured-newspaper&posts_per_page=-1'); ?>

<!-- featured posts -->
<?php if (have_posts()) : while ($my_featured->have_posts()) : $my_featured->the_post(); ?>
<div class="post">
    <!--<h3><?php the_title(); ?></h3>-->
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <div class="clear"></div>
</div>
<?php endwhile; endif;?>
<!-- /end featured -->


<?php if (have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="post">
    <!--<h3><?php the_title(); ?></h3>-->
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <div class="clear"></div>
</div>
<?php endwhile; endif;?>

就像我说的,这不是最干净的做事方式,但它确实有效。如果您有其他建议,我会全力以赴 :)

谢谢!阿米特

于 2010-08-15T09:38:02.040 回答