0

在单个帖子上,我在循环之外显示其他类似这样的帖子

$posts = get_posts('numberposts=200&category='. $category->term_id);
foreach($posts as $post) :

尝试添加

query_posts($query_string . '&orderby=rand');

但是我尝试它不要以随机顺序进行

4

2 回答 2

0

尝试这个:

<?php
$args = array( 'posts_per_page' => 5, 'orderby' => 'rand' );
$rand_posts = get_posts( $args );

foreach ( $rand_posts as $post ) :  
  setup_postdata( $post ); ?> 
  <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 
<?php 
endforeach; 

wp_reset_postdata(); ?>

你可以看到codex:

http://codex.wordpress.org/Template_Tags/get_posts

于 2013-10-15T09:51:21.250 回答
0

问题是我没有把它放在 get_posts 之类的首位

$posts = get_posts('orderby=rand&numberposts=200&category='. $category->term_id);
foreach($posts as $post) :
于 2013-10-14T17:51:38.657 回答