Skip to content

Instantly share code, notes, and snippets.

View gbyat's full-sized avatar

Gabriele Lässer gbyat

View GitHub Profile
@gbyat
gbyat / latest-and-first.php
Last active March 24, 2024 17:41
get latest and first post in WordPress
/******************************************
* get latest post
* use in loop if ( is_latest() ) { stuff; }
******************************************/
function is_latest() {
global $post;
$loop = get_posts( 'numberposts=1' );
$latest = $loop[0]->ID;
return ( $post->ID == $latest ) ? true : false;
}