Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dancywritter/b156c6a1fbf44ed7cd9ffc12a8376fa7 to your computer and use it in GitHub Desktop.
Save dancywritter/b156c6a1fbf44ed7cd9ffc12a8376fa7 to your computer and use it in GitHub Desktop.
Check If WordPress Post is Older than X Days
<?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!! */
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment