wordpress WP_Query在调用文章的时候,即使设置了指定栏目,也会调用其他栏目的置顶文章,这点十分恶心,如何排除呢?元素模板为您解答
使用下面代码即可
<h2>最新文章</h2> <ul> <?php $recentPosts = new WP_Query(array('post__not_in' => get_option('sticky_posts'))); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <li> <a href="<?php the_permalink() ?>" rel="bookmark" class="title"><? echo get_the_title(); ?></a><?php the_time('m/d'); ?></li> <?php endwhile; wp_reset_query();?> </ul>