也想出现在这里?联系我们

wordpress调用置顶文章

2014.11.22 wordpress教程
  • 文章介绍
  • 升级版本
  • 评价&建议

有些时候我们需要调用 WordPress 置顶文章并单独显示出来,可以通过 WP_Query 来实现,代码如下:

  1. <?php  
  2. $args = array(  
  3. 'posts_per_page' => -1,  
  4. 'post__in' => get_option( 'sticky_posts' )  
  5. );  
  6. $sticky_posts = new WP_Query( $args );  
  7. while ( $sticky_posts->have_posts() ) : $sticky_posts->the_post();?>  
  8. <li>  
  9. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>  
  10. </li>  
  11. <?php endwhile; wp_reset_query();?>  
有用0
  • 2014.11.22初次和大家见面了!

等待您对该主题的建议

发表评论

还能输入240个字

Hi, 欢迎加入Wordpress技术交流群,带你装逼带你飞!

我要入群
也想出现在这里?联系我们
wordpress加速

我来推荐一个更牛逼的给你看看?

  • 猛戳我吧