在使用WordPress建站的过程中,我们有时希望把最新文章列表和置顶文章列表分开输出显示。可是当我们调用最新文章列表的时候,如果 wordpress网站中有置顶文章的话,那么最新文章列表中会把里面的置顶文章显示出来,而且在最前面。我们如何让才能排除最新文章列表中的置顶文章呢?下面我们来介绍一下方法,原理是通过设置置顶文章的参数caller_get_posts来实现。
切换到主题目录,在需要调用的地方插入如下代码,即可实现:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php $post_num = 10; // 显示文章的数量 $args=array( 'post_status' => 'publish', 'paged' => $paged, 'caller_get_posts' => 1, 'posts_per_page' => $post_num ); query_posts($args); // 主循环 if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php endwhile; else: endif; wp_reset_query();?> |