Changeset 4134
- Timestamp:
- 08/30/2006 04:46:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r4116 r4134 610 610 else 611 611 return $the_date; 612 } 613 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); 612 626 } 613 627
Note: See TracChangeset
for help on using the changeset viewer.