Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nschaeferhoff/d2f48f88311aadc03a06d872befa2c15 to your computer and use it in GitHub Desktop.
Save nschaeferhoff/d2f48f88311aadc03a06d872befa2c15 to your computer and use it in GitHub Desktop.
function display_last_updated_date() {
$u_time = get_the_time('U');
$u_modified_time = get_the_modified_time('U');
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time('F jS, Y');
echo '<div class="last-updated">This post was last updated on ' , $updated_date , '.</div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment