Guest User

Untitled

a guest
Oct 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function wpb_last_updated_date( $content ) {
  2. $u_time = get_the_time(‘U’);
  3. $u_modified_time = get_the_modified_time(‘U’);
  4. if ($u_modified_time >= $u_time + 86400) {
  5. $updated_date = get_the_modified_time(‘F jS, Y’);
  6. $updated_time = get_the_modified_time(‘h:i a’);
  7. $custom_content .= ‘Last updated on ‘. $updated_date . ‘ at ‘. $updated_time .”;
  8. }
  9.  
  10. $custom_content .= $content;
  11. return $custom_content;
  12. }
  13. add_filter( ‘the_content’, ‘wpb_last_updated_date’ );
Add Comment
Please, Sign In to add comment