Guest User

Untitled

a guest
Oct 23rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function display_last_updated_date( $content ) {
  2. $original_time = get_the_time('U');
  3. $modified_time = get_the_modified_time('U');
  4. if ($modified_time >= $original_time + 86400) {
  5. $updated_time = get_the_modified_time('h:i a');
  6. $updated_day = get_the_modified_time('F jS, Y');
  7. $modified_content .= '<p class="last-modified">This post was last updated on '. $updated_day . ' at '. $updated_time .'</p>';
  8. }
  9.  
  10. $modified_content .= $content;
  11. return $modified_content;
  12. }
  13. add_filter( 'the_content', 'display_last_updated_date' );
Add Comment
Please, Sign In to add comment