随机的帖子毁了我的Wordpress评论区


Random Post ruining my Wordpress comments section

我目前在我的模板上有这个代码:

<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish', 'offset' => 1);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2><p><?php the_excerpt(); ?>
</p></li>
<?php endforeach; ?>
</ul>

代码的本质是从博客文章中生成随机帖子列表。问题是,代码开始破坏我的评论部分,通过显示不相关博客文章的错误评论列表。

参见上面链接的示例

的常识要做的,是删除代码在我的模板。我的问题是关于如何修复上面的代码,所以我仍然可以使用它的任何想法?

如果您使用get_posts,并且需要重写$post,则必须这样做:

<?php
global $post;
$tmp_post = $post;
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish', 'offset' => 1);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
    <li><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2><p><?php the_excerpt(); ?>
    </p></li>
<?php endforeach; ?>
</ul>
<?php $post = $tmp_post; // reset the $post to the original ?>