Skip to content

Instantly share code, notes, and snippets.

@carolinerusso
Last active December 8, 2015 14:24
Show Gist options
  • Save carolinerusso/ae25a1d43f49c5331947 to your computer and use it in GitHub Desktop.
Save carolinerusso/ae25a1d43f49c5331947 to your computer and use it in GitHub Desktop.
Show "new" label for WordPress posts published within the last 24 hours (86400 seconds)
<?php
$date = strtotime ( get_the_time('Y-m-d g:i:s') );
$blogtime = strtotime ( current_time( 'mysql' ) );
if( $blogtime - $date <= 86400 ) :
echo '<span class="label label-new">New!</span>';
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment