diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php
index d521a64eab..eb2710efe3 100644
|
a
|
b
|
function get_the_date( $d = '', $post = null ) {
|
| 2301 | 2301 | } |
| 2302 | 2302 | |
| 2303 | 2303 | if ( '' == $d ) { |
| 2304 | | $the_date = mysql2date( get_option( 'date_format' ), $post->post_date ); |
| | 2304 | $the_date = get_post_time( get_option( 'date_format' ), false, $post, true ); |
| 2305 | 2305 | } else { |
| 2306 | | $the_date = mysql2date( $d, $post->post_date ); |
| | 2306 | $the_date = get_post_time( $d, false, $post, true ); |
| 2307 | 2307 | } |
| 2308 | 2308 | |
| 2309 | 2309 | /** |