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



get_the_date › WordPress Function

Seit3.0.0
Veraltetn/v
get_the_date ( $format = '', $post = null )
Parameter: (2)
  • (string) $format Optional. PHP date format. Defaults to the 'date_format' option.
    Erforderlich: Nein
    Standard: (leer)
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default current post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string|int|false) Date the current post was written. False on failure.
Definiert in:
Codex:

Retrieves the date on which the post was written.

Unlike the_date() this function will always return the date. Modify output with the {@see 'get_the_date'} filter.


Quellcode

function get_the_date( $format = '', $post = null ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$_format = ! empty( $format ) ? $format : get_option( 'date_format' );

	$the_date = get_post_time( $_format, false, $post, true );

	/**
	 * Filters the date a post was published.
	 *
	 * @since 3.0.0
	 *
	 * @param string|int  $the_date Formatted date string or Unix timestamp if `$format` is 'U' or 'G'.
	 * @param string      $format   PHP date format.
	 * @param WP_Post     $post     The post object.
	 */
	return apply_filters( 'get_the_date', $the_date, $format, $post );
}