Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. function et_last_modified_date_blog( $the_date ) {
  2. if ( 'post' === get_post_type() ) {
  3. $the_time = get_post_time( 'His' );
  4. $the_modified = get_post_modified_time( 'His' );
  5.  
  6. $last_modified = sprintf( __( 'Last updated %s', 'Divi' ), esc_html( get_post_modified_time( 'M j, Y' ) ) );
  7. $date = $the_modified !== $the_time ? $last_modified : get_post_time( 'M j, Y' );
  8.  
  9. return $date;
  10. }
  11. }
  12. add_action( 'get_the_date', 'et_last_modified_date_blog' );
  13. add_action( 'get_the_time', 'et_last_modified_date_blog' );
  14.  
  15. $last_modified = sprintf( __( '<strong>Last updated %s</strong>', 'Divi' ), esc_html( get_post_modified_time( 'M j, Y' ) ) );
Add Comment
Please, Sign In to add comment