Voglio ottenere tutti i post di determinati ID autore (utente corrente). Successivamente, desidero scegliere il primo post scritto da questo utente (ASC). Immagino di non usare gli argomenti giusti in get_posts, vero? $ current_user_posts contiene sempre una matrice con tutti i post del blog in più oggetti WP_Post diversi.
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();