Get_Posts-按作者数组获取所有帖子 时间:2018-08-28 作者:Alt C 我有一个这样的案子。不知道如何使用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__in 不author 作为查询参数。$authors = [ 1, 2, 3, ]; $current_user_posts = get_posts( [ \'author__in\' => $authors, \'orderby\' => \'random\', \'post_per_page\' => \'1\', \'order\' => \'ASC\' ] ); 结束 文章导航