the_modified_time( string $d = '' )

Display the time at which the post was last modified.


Description


Parameters

$d

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

Default value: ''


Top ↑

Source

File: wp-includes/general-template.php

function the_modified_time( $d = '' ) {
	/**
	 * Filters the localized time a post was last modified, for display.
	 *
	 * @since 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 );
}

Top ↑

Changelog

Version Description
2.0.0 Introduced.