Use get_post_modified_time filter in get_post_modified_time(). Props Denis-de-Bernardy. fixes #9734
git-svn-id: http://svn.automattic.com/wordpress/trunk@11347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
909978dfaa
commit
d0e5cc1409
|
@ -1342,7 +1342,7 @@ function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translat
|
|||
$time = $post->post_modified;
|
||||
$time = mysql2date($d, $time, $translate);
|
||||
|
||||
return apply_filters('get_the_modified_time', $time, $d, $gmt);
|
||||
return apply_filters('get_post_modified_time', $time, $d, $gmt);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue