Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nschaeferhoff/d2f48f88311aadc03a06d872befa2c15 to your computer and use it in GitHub Desktop.

Select an option

Save nschaeferhoff/d2f48f88311aadc03a06d872befa2c15 to your computer and use it in GitHub Desktop.

Revisions

  1. nschaeferhoff created this gist Nov 22, 2017.
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    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>';
    }
    }