Ticket #2374: 2374.diff
File 2374.diff, 704 bytes (added by , 18 years ago) |
---|
-
wp-includes/general-template.php
612 612 } 613 613 614 614 615 function the_modified_date($d = '') { 616 echo apply_filters('the_modified_date', get_the_modified_date($d), $d); 617 } 618 619 620 function get_the_modified_date($d = '') { 621 if ( '' == $d ) 622 $the_time = get_post_modified_time(get_settings('date_format')); 623 else 624 $the_time = get_post_modified_time($d); 625 return apply_filters('get_the_modified_date', $the_time, $d); 626 } 627 628 615 629 function the_time( $d = '' ) { 616 630 echo apply_filters('the_time', get_the_time( $d ), $d); 617 631 }