程序员人生 网站导航

显示WordPress随机文章(不使用插件)

栏目:WordPress时间:2013-10-14 03:45:02

通常我们可以通过Random Pages Widget插件来实现随机文章的显示,不过如果不想涉及插件,下面的代码也可以调用出随机文章哦。

<ul> <?php $rand_posts = get_posts('numberposts=5&orderby=rand'); foreach( $rand_posts as $post ) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>

来源:WordPress啦编译

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐