我使用下面添加到模板中的代码来显示随机帖子。
<ul>
<?php $posts = get_posts(\'orderby=rand&numberposts=5\'); foreach($posts as $post) { ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php } ?>
</ul>
我是否需要重置,大概是通过更改
<?php } ?>
至
<?php } wp_reset_postdata(); ?>
是否需要重置取决于此代码块是在模板中其他循环/查询之前还是之后?