From cdc1c73f61f39feab3c266f412df89be4ce09657 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 30 Aug 2006 16:46:08 +0000 Subject: [PATCH] the_modified_date(). Props westi. fixes #2374 git-svn-id: http://svn.automattic.com/wordpress/trunk@4134 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index bb425dcbb..73592b17a 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -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); }