Orderby rand不适用于自定义POST类型

时间:2021-01-05 作者:Parth Shah

我有自定义的post类型,我只想随机显示单个post数据,下面是我使用的基本代码。

$args = array(
        \'post_type\' => \'nd_rst_cpt_1\', //custom post type name
        \'orderby\'   => \'rand\', //random order
        \'posts_per_page\' => 1,  //shows only single post
    );
    $resData = new WP_Query($args);
    if ($resData->have_posts()) :
        while ($resData->have_posts()) :
        the_title(); //display title
        endwhile;
    else:
        echo \'<div class="no_restaurants">\' . NO_RES_MSG . \'</div>\'; //if no post found
    endif;
这是我代码的基本结构,但它总是显示最近的帖子名,而不是随机的。

1 个回复
SO网友:Jklyn

Add order asc

$args = array(
    \'post_type\' => \'nd_rst_cpt_1\', //custom post type name
    \'orderby\'   => \'rand\', //random order
    \'order\'     => \'ASC\',
    \'posts_per_page\' => 1,  //shows only single post
);

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post