在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. $sticky = get_option( ’sticky_posts’ );
  3. query_posts( array( ‘post__in’ => $sticky, ‘caller_get_posts’ => 1, ‘orderby’ => ID, ’showposts’ => 2 ) );
  4. ?>
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6. <a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
  7. <?php endwhile;?>
  8.  
  9. <?php endif; ?>
  10.  
  11.  
  12. <?php $sticky = get_option(’sticky_posts’) ;
  13.  
  14. $post_to_exclude[] = $sticky[0];
  15.  
  16. $args=array(
  17. ‘caller_get_posts’=>1,
  18. ’showposts’=>2,
  19. ‘post__not_in’=> $post_to_exclude,
  20. );
  21.  
  22. query_posts($args); ?>
  23.  
  24. <h2><a href=”<?php the_permalink() ?>”><?php the_title(); ?></a> </h2>
  25.  
  26. <?php while (have_posts()) : the_post(); ?>
  27.  
  28. <?php endwhile;?>

以上是关于在WordPress中显示粘滞帖子并将其从最近的帖子列表中排除的主要内容,如果未能解决你的问题,请参考以下文章

PHP 从WordPress中的循环中排除粘滞帖子

在Wordpress主题中禁用页脚会阻止粘性导航粘滞

PHP 在WordPress边栏中显示最近帖子的发布日期

如何在最近的帖子Wordpress中添加缩略图

在WordPress侧边栏中显示最近帖子的发布日期

php 显示wordpress最近的帖子