Chcę uzyskać wszystkie posty według określonego identyfikatora autora (bieżący użytkownik). Później chcę wybrać pierwszy post napisany przez tego użytkownika (ASC). Chyba nie używam właściwych argumentów w get_posts, prawda? $ current_user_posts zawsze zawiera tablicę ze wszystkimi postami na blogu w wielu różnych obiektach 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();