Filters the date a post was last modified, for display.
$the_modified_datestring$formatstring$beforestring$afterstringwp-includes/general-template.php:2774the_modified_date() * * @param string $the_modified_date The last modified date. * @param string $format PHP date format. * @param string $before HTML output before the date. * @param string $after HTML output after the date. */ $the_modified_date = apply_filters( 'the_modified_date', $the_modified_date, $format, $before, $after ); if ( $display ) { echo $the_modified_date; } else { return $the_modified_date; }Introduced in 2.1.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$the_modified_date retyped from string|false to string.verified against source