有些时候我们需要调用 wordpress 置顶文章并单独显示出来,可以通过 WP_Query 来实现,代码如下:
- <?php
- $args = array(
- 'posts_per_page' => -1,
- 'post__in' => get_option( 'sticky_posts' )
- );
- $sticky_posts = new WP_Query( $args );
- while ( $sticky_posts->have_posts() ) : $sticky_posts->the_post();?>
- <li>
- <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
- </li>
- <?php endwhile; wp_reset_query();?>
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!