Skip to content

Instantly share code, notes, and snippets.

@wpmark
Created October 8, 2014 11:06
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpmark/9d5d2395cb01a2de0179 to your computer and use it in GitHub Desktop.
Save wpmark/9d5d2395cb01a2de0179 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