首页 Wordpress WordPress 调用随机文章

WordPress 调用随机文章

调用wordpress随机文章列表
php
<?php $rand_posts = get_posts('numberposts=10& category=1&orderby=rand');foreach($rand_posts as $post) : ?>
<li><a href="/%3C?php%20the_permalink();%20?%3E"><?php the_title(); ?></a></li>
<?php endforeach;?>
numberposts---调用数量 category---调用分类 orderby----排列方式

相关推荐

发表回复

邮箱地址不会被公开。