मैं कुछ लेखक आईडी (वर्तमान उपयोगकर्ता) द्वारा सभी पोस्ट प्राप्त करना चाहता हूं। बाद में, मैं इस उपयोगकर्ता (एएससी) द्वारा बनाई गई पहली पोस्ट चुनना चाहता हूं। मुझे लगता है कि मैं get_posts में सही तर्कों का उपयोग नहीं कर रहा हूं, क्या मैं हूं? $ current_user_posts में हमेशा अलग-अलग WP_Post ऑब्जेक्ट्स में सभी ब्लॉग पोस्ट के साथ एक Array होता है।
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();