听起来WordPress不支持开箱即用。但是,您可以通过wp_get_recent_posts()
, 然后对照那里的结果进行检查。
我在这里使用array_shift()
将包含一个帖子的数组转换为帖子本身。
$args = array(
\'numberposts\' => 1,
\'post_status\' => \'publish\',
);
$most_recent_post = array_shift(wp_get_recent_posts( $args, ARRAY_A ));
$next_post = get_next_post();
if (!empty( $next_post )) {
// is the next post the most recent post?
if ($most_recent_post[\'ID\'] === $next_post->ID) {
// next post is most recent post
} else {
// next post is not most recent post
}
}