Last active
December 8, 2015 14:24
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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