wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_modified_date › WordPress Function

Seit2.1.0
Veraltetn/v
the_modified_date ( $format = '', $before = '', $after = '', $display = true )
Parameter: (4)
  • (string) $format Optional. PHP date format. Defaults to the 'date_format' option.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $before Optional. Output before the date. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $after Optional. Output after the date. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (bool) $display Optional. Whether to echo the date or return it. Default true.
    Erforderlich: Nein
    Standard: true
Gibt zurück:
  • (string|void) String if retrieving.
Definiert in:
Codex:

Displays the date on which the post was last modified.



Quellcode

function the_modified_date( $format = '', $before = '', $after = '', $display = true ) {
	$the_modified_date = $before . get_the_modified_date( $format ) . $after;

	/**
	 * Filters the date a post was last modified for display.
	 *
	 * @since 2.1.0
	 *
	 * @param string|false $the_modified_date The last modified date or false if no post is found.
	 * @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;
	}
}