如何在Wordpress中显示随机帖子?

时间:2012-05-26 23:31:14

标签: wordpress

如果在网址样式中显示每个类别的随机帖子,如: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(); ?>

但结果不正确,它显示所有类别的随机帖子!

1 个答案:

答案 0 :(得分:1)

您需要了解如何使用query_posts。您可以按如下方式修改archive.phpcategory.php

query_posts(array(
    'showposts' => 6,
    'orderby' => 'rand',
    'category_name' => 'News' //You can insert any category name
));
if (have_posts()) : while (have_posts()) : the_post();