Вы пробовали смещение последних постов с лимитом 1?Как это:
$args = array(
'numberposts' => 1, // only return 1 post
'offset' => 2, // select the third item found
'orderby' => 'post_date', // field for order by
'order' => 'DESC', //DESC for 3th most recent, ASC for third oldest post
'post_type' => 'post', // could be any post type, remove if you want all post types
'post_status' => 'publish' // only show published posts, remove if you want all even trashed
);
$recent_posts = wp_get_recent_posts( $args );