Advertisement
salmancreation

How to Show post date & the last modified date

Aug 5th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. How to Show post date & the last modified date:
  2.  
  3.  
  4. This is a simple little snippet that will display the last modified date with your post along with the date posted as long as the dates are not the same.
  5.  
  6. Posted on <?php the_time('F jS, Y') ?>
  7. <?php
  8.           $u_time = get_the_time('U');
  9.           $u_modified_time = get_the_modified_time('U');
  10.       if ($u_modified_time != $u_time) {
  11.                 echo "and last modified on ";
  12.                 the_modified_time('F jS, Y');
  13.                 echo ". ";
  14.           }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement