This file contains 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 | |
/******************************* | |
* this will work in the loop | |
*******************************/ | |
/* check if the posts publish date is older than 60 days */ | |
if( strtotime( $post->post_date ) < strtotime('-60 days') ) { | |
/* post is older than 60 days - do something with it!! */ | |