특정 작성자 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();