wordpress3.8 显示随机文章代码

1
2
3
4
5
6
7
8
<ul>
<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
原文链接:https://xiaohost.com/615.html,转载请注明出处。
0

评论4

请先
  1. 各种求赞助
    七剑 2014-01-19 0
  2. 不错的方法!
  3. 不错,有空试试看。
    小z 2014-04-08 0