私は次のコードを使用して最後または最も古い投稿データを取得する方法を知っています
$posts = get_posts(array(
'post_type' => 'post',
'order_by' => 'publish_date',
'order' => 'ASC'
));
そして、最初の配列自体から日付を取得しますが、それを取得する最も簡単な方法はありますか?
function is_first() {
global $post;
$loop = get_posts( 'numberposts=1&order=ASC' );
$first = $loop[0]->ID;
return ( $post->ID == $first ) ? true : false;
}
これも使えます