the_modified_date(). Props westi. fixes #2374

git-svn-id: https://develop.svn.wordpress.org/trunk@4134 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-08-30 16:46:08 +00:00
parent cd766e57e9
commit 0644529857
1 changed files with 14 additions and 0 deletions

View File

@ -612,6 +612,20 @@ function the_date($d='', $before='', $after='', $echo = true) {
}
function the_modified_date($d = '') {
echo apply_filters('the_modified_date', get_the_modified_date($d), $d);
}
function get_the_modified_date($d = '') {
if ( '' == $d )
$the_time = get_post_modified_time(get_settings('date_format'));
else
$the_time = get_post_modified_time($d);
return apply_filters('get_the_modified_date', $the_time, $d);
}
function the_time( $d = '' ) {
echo apply_filters('the_time', get_the_time( $d ), $d);
}