wordpress调用随机文章

文章描述:

WordPress调用随机文章

numberposts   文章数量
orderby   排序
post_status   发布文章

<?php
   $args=array( \'numberposts\'=> 5, \'orderby\' => \'rand\', \'post_status\' => \'publish\' ); 
   $rand_posts = get_posts( $args ); 
?>
<ul>
<?php foreach( $rand_posts as $post ) : ?>
   <li><a href=\"<?php the_permalink(); ?>\"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
© 版权声明
THE END
点赞0打赏 分享
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容