If X Amount of Time Has Passed Since Post Was Published, Do Something
if ( human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) strtotime( '7 days' ) ) {
echo 'New!';
}
I've also tried:
if ( get_the_date( 'U' ) strtotime( '-7 days' ) )
if ( get_the_date( 'U' ) strtotime( '-7 days' ) )
if ( get_the_date( 'U' ) strtotime( '7 days' ) )
if ( get_the_date( 'U' ) strtotime( '7 days' ) )
if ( human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) strtotime( '-7 days' ) )
if ( human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) strtotime( '-7 days' ) )
if ( human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) strtotime( '7 days' ) )
if ( human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) strtotime( '7 days' ) )
The basic idea is if a blog post is still less than 7 days old, it's still considered new.
I'm working within the loop, but perhaps my logic is wrong?
Topic date comparison Wordpress
Category Web