找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1140|回复: 0

[Wordpress] wordpress随机显示文章方法

[复制链接]
发表于 2013-12-13 22:28:04 | 显示全部楼层 |阅读模式
怎样让wordpress随机显示文章?主要有下面一些方法:


方法一 使用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; ?>
复制代码


方法二 使用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. ?>
复制代码


如果你还有其他方法让wordpress随机显示文章,欢迎跟帖!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-17 03:34 , Processed in 0.036471 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

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