Guest User

Untitled

a guest
Jan 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $u_time = the_time('U');
  3. $u_modified_time = the_modified_time('U');
  4. if ($u_modified_time > $u_time) {
  5. echo "[UPDATED] "; the_modified_time('F j, Y'); echo " at "; the_modified_time(); echo " EST";}
  6. else {
  7. echo "[PUBLISHED] "; the_time('M jS Y'); echo " at "; the_time(); echo " EST"; }
  8. ?>
Add Comment
Please, Sign In to add comment