Guest User

Untitled

a guest
Nov 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function display_last_updated_date() {
  2. $u_time = get_the_time('U');
  3. $u_modified_time = get_the_modified_time('U');
  4.  
  5. if ($u_modified_time >= $u_time + 86400) {
  6. $updated_date = get_the_modified_time('F jS, Y');
  7. echo '<div class="last-updated">This post was last updated on ' , $updated_date , '.</div>';
  8. }
  9. }
Add Comment
Please, Sign In to add comment