Tüm gönderileri belirli yazar kimliğiyle (geçerli kullanıcı) almak istiyorum. Daha sonra, bu kullanıcı tarafından yapılan ilk gönderiyi (ASC) seçmek istiyorum. Ben get_posts doğru argümanlar kullanmıyorum, değil mi? $ current_user_posts her zaman birden çok farklı WP_Post Nesnesindeki tüm blog yayınlarının bulunduğu bir Dizi içerir.
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();