the_modified_time( string $d = '' )

Display the time at which the post was last modified.


Parameters

$d

(string) (Optional) Either 'G', 'U', or php date format defaults to the value specified in the time_format option.

Default value: ''


Source

File: wp-includes/general-template.php

function the_modified_time($d = '') {
	/**
	 * Filters the localized time a post was last modified, for display.
	 *
	 * @since WP-2.0.0
	 *
	 * @param string $get_the_modified_time The formatted time.
	 * @param string $d                     The time format. Accepts 'G', 'U',
	 *                                      or php date format. Defaults to value
	 *                                      specified in 'time_format' option.
	 */
	echo apply_filters( 'the_modified_time', get_the_modified_time($d), $d );
}


Changelog

Changelog
Version Description
WP-2.0.0 Introduced.