欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > wordpress教程 >
wordpress教程

wordpress WP_Query调用数据 如何排除置顶文章

(元素模板) / 2022-12-15 17:00

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>
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com