我在 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 »'); ?>
<div class="clear"></div>
</div>
<?php endwhile; endif;?>
我想知道是否可以在顶部显示带有“特色”标签的帖子,而之后显示所有其他没有特色标签的帖子。
谢谢!阿米特