当 url 样式像 : 时,如何为每个类别显示随机帖子http://www.whatever.com/category/all-english/poetry/
,所以每次我点击类别链接时,它都会显示不同的帖子
我试过这个:
$cat=get_query_var( 'cat' );
query_posts('cat=$cat&orderby=rand');
if (have_posts()) :
if ( $is_top_single ) $GLOBALS['more'] = false; //important
while (have_posts()) : the_post(); ?>
但结果不正确,它显示所有类别的随机帖子!