首页 文章

在WordPress主页上显示最新的2个粘贴帖子

提问于
浏览
3

我正在削减我的WordPress主题,我想在我的Wordpress主页顶部添加最新的2个粘贴帖子 . 为此,我使用以下代码:

<div class="trending-right">
   <?php
     $sticky = get_option( 'sticky_posts' ); // Get all sticky posts
     rsort( $sticky ); // Sort the stickies, latest first
     $sticky = array_slice( $sticky, 0, 2 ); // Number of stickies to show
     query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) ); // The query

     if (have_posts() ) { while ( have_posts() ) : the_post(); ?>
     <div class="trend-post">
     <div class="thumb"><?php the_post_thumbnail(array(150,100)); ?></div>
     <div class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div>
     </div>
     <?php endwhile;?>
     <?php } else { echo ""; }?>

</div>

现在代码工作正常并显示最新的2个粘贴帖子,但它也会从主页中删除所有其他列出的帖子,并仅显示那2个粘贴帖子 . 我尝试用 new WP_Query 替换 query_posts 但在这种情况下它显示所有粘贴帖子而不是仅2 .

有任何建议如何调整上面的代码并使其工作?

1 回答

  • 3

    看看你的代码,我假设你刚刚向我们展示了粘性循环,还有另一个查询来显示模板中其他地方的其他帖子?你应该使用wp_reset_query();在您的自定义查询之后,这是Codex中的条目;

    Wordpress - resetting custom query

相关问题