我在非wordpress网站上做了一个页面,显示了wordpress网站博客上的帖子,它工作正常。我在页面中添加了一些PHP代码。现在我希望每次刷新页面时,都会显示不同的帖子。
<?php
define(\'WP_USE_THEMES\', false);
require(\'blog/wp-load.php\');
query_posts(\'showposts=4\');
?>
<ul style="margin-top:0px">
<?php while (have_posts()): the_post(); ?>
<li style="border: 1px solid #edf4fc;margin-bottom:30px">
<div class="img-hover-zoom">
<a target="_blank" href="<?php the_permalink(); ?>"><p>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
</p>
<div class="content">
<h4 style="font-size:18px;font-weight:500;"><?php the_title(); ?></h4>
</div>
</a></div>
</li>
<?php endwhile; ?>
</ul>```
It is showing 5 post but I want to show 5 random post.