在单个帖子上,我在循环之外显示其他类似这样的帖子
$posts = get_posts('numberposts=200&category='. $category->term_id);
foreach($posts as $post) :
尝试添加
query_posts($query_string . '&orderby=rand');
但是我尝试它不要以随机顺序进行
尝试这个:
<?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:
问题是我没有把它放在 get_posts 之类的首位
$posts = get_posts('orderby=rand&numberposts=200&category='. $category->term_id);
foreach($posts as $post) :