WordPress 调用随机文章

Gavin Wu 2021年01月14日 8:01 Wordpress 1,037 Views

调用wordpress随机文章列表

1
2
3
<?php $rand_posts = get_posts('numberposts=10& category=1&orderby=rand');foreach($rand_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach;?>
numberposts—调用数量
category—调用分类
orderby—-排列方式

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

Top