找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1288|回复: 1

[Wordpress] wordpress随机显示文章代码

[复制链接]
发表于 2013-6-12 23:54:25 | 显示全部楼层 |阅读模式
wordpress博客可以通过以下两种方法随机显示文章

1.使用get_posts生成随机文章
  1. <?php
  2. $rand_posts = get_posts('numberposts=10&orderby=rand');
  3. foreach( $rand_posts as $post ) :
  4. ?>
  5. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  6. <?php endforeach; ?>
复制代码
2.使用query_psots生成随机文章
  1. <?php
  2. query_posts('showposts=10&orderby=rand');
  3. if ( have_posts() ) : while ( have_posts() ) : the_post();
  4. ?>
  5. <li><em><?php echo $j++;?></em><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  6. <?php
  7. endwhile; else:
  8. ?>
  9. 没有可显示的文章
  10. <?php
  11. endif;
  12. wp_reset_query();
  13. ?>
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|王牌互联

GMT+8, 2024-11-17 04:57 , Processed in 0.032809 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表