Get_Posts-按作者数组获取所有帖子

时间:2018-08-28 作者:Alt C

我有一个这样的案子。

enter image description here

不知道如何使用wpQuery来实现这一点

这是针对单个用户的。不确定如何通过阵列。

global $current_user;
get_currentuserinfo();                      

$args = array(
    \'author\'        =>  $current_user->ID, 
    \'orderby\'       =>  \'random\',
    \'post_per_page\' => \'1\',
    \'order\'         =>  \'ASC\' 
    );

$current_user_posts = get_posts( $args );

1 个回复
最合适的回答,由SO网友:Nathan Johnson 整理而成

使用author__inauthor 作为查询参数。

$authors = [ 1, 2, 3, ];

$current_user_posts = get_posts( [
    \'author__in\'    =>  $authors, 
    \'orderby\'       =>  \'random\',
    \'post_per_page\' => \'1\',
    \'order\'         =>  \'ASC\' 
] );

结束

相关推荐

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

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