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


Show latest 2 sticky posts at WordPress home page

我正在剪切我的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个。

有什么建议可以调整上面的代码并使其工作吗?

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

Wordpress-重置自定义查询