WP Query不返回数组中的值

时间:2017-01-30 23:48:13

标签: wordpress

我正在使用WP_Query返回一篇随机帖子。我想使用一个更新的会话变量,其中包含WP_Query的帖子列表,以返回。如何将其添加到数组或函数中?

这是我的代码

$args = array(
    'tag' => $_GET['Category'],
    'orderby' => 'rand',
    'posts_per_page'=>1
);
$the_query = new WP_Query( $args);

1 个答案:

答案 0 :(得分:0)

这是解决方案:post__not_in其中$ postid是一个数组。

$args = array(
    'tag' => $_GET['Category'],
    'orderby' => 'rand',
    'posts_per_page'=>1,
    'post__not_in' =>  $postid
);