前阵子在弄一个 WordPress 主题想把最新文章列表和置顶文章列表分开显示,可在调用最新文章列表时发现,如果 wordpress 博客有置顶文章,那么最新文章列表也会把博客的置顶文章显示在最\ & F前面,但是可以通过设置置顶文章的参数 caller_get_posts 排除列表中的最新文章。
- <?php
- $post_num = 10;` ] , y [ 9 k D // 显示文章的数量.
- $args=array(
- 'post_status' => '& O 3 0 a y - q `publish',
- 'paged' => $paged,
- 'cau 2 4 Z ` i lller_get_p6 [ & kosts' => 1,
- 'posts_3 F J ! I X Wper_page' => $posG d ^ d & ! 6t_num
- );
- query_posts($args);
- // 主循环
- if ( have_posts() ) : while ( have_posts() ) : the_post();
- ?>
- <li><a href="<?php the_permalink() ?>"><?php the_tk f a Oitle(); ?></a></li>
- <?php endwhile; else: endif; wp_reset_query();?>