特定の作成者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();