我想按特定作者ID(当前用户)获取所有帖子。稍后,我要选择该用户(ASC)发表的第一篇文章。我猜我在get_posts中使用的参数不正确,是吗?$ current_user_posts始终包含一个数组,其中所有博客帖子均位于多个不同的WP_Post对象中。
global $current_user;
get_currentuserinfo();
$args = array(
'author' => $current_user->ID, // I could also use $user_ID, right?
'orderby' => 'post_date',
'order' => 'ASC'
);
// get his posts 'ASC'
$current_user_posts = get_posts( $args );
$current_user = wp_get_current_user();