Fix post time display. Bug 636.
git-svn-id: https://develop.svn.wordpress.org/trunk@2071 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
741fea5fc6
commit
cf5e38acb6
@ -606,11 +606,10 @@ function the_time( $d = '' ) {
|
||||
}
|
||||
|
||||
function get_the_time( $d = '' ) {
|
||||
global $id, $post;
|
||||
if ( '' == $d )
|
||||
$the_time = date( get_settings('time_format'), get_post_time() );
|
||||
else
|
||||
$the_time = mysql2date( $d, get_post_time() );
|
||||
$the_time = date( $d, get_post_time() );
|
||||
return apply_filters('get_the_time', $the_time);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user