我正在使用WP_Query返回一篇随机帖子。我想使用一个更新的会话变量,其中包含WP_Query的帖子列表,以不返回。如何将其添加到数组或函数中?
这是我的代码
$args = array(
'tag' => $_GET['Category'],
'orderby' => 'rand',
'posts_per_page'=>1
);
$the_query = new WP_Query( $args);
答案 0 :(得分:0)
这是解决方案:post__not_in其中$ postid是一个数组。
$args = array(
'tag' => $_GET['Category'],
'orderby' => 'rand',
'posts_per_page'=>1,
'post__not_in' => $postid
);