the_time( string $format =  )

Displays the time at which the post was written.

Parameters

$formatstringoptional
Format to use for retrieving the time the post was written. Accepts 'G', 'U', or PHP date format.
Defaults to the 'time_format' option.

Default:''

Source

function the_time( $format = '' ) {
	/**
	 * Filters the time a post was written for display.
	 *
	 * @since 0.71
	 *
	 * @param string $get_the_time The formatted time.
	 * @param string $format       Format to use for retrieving the time the post
	 *                             was written. Accepts 'G', 'U', or PHP date format.
	 */
	echo apply_filters( 'the_time', get_the_time( $format ), $format );
}

Hooks

apply_filters( ‘the_time’, string $get_the_time, string $format )

Filters the time a post was written for display.

Changelog

VersionDescription
0.71Introduced.

User Contributed Notes

  1. Skip to note 8 content

    Time as AM/PM VS. 24H format

    Displays the time using the format parameter string ‘g:i a’ (ex: 10:36 pm).

    <p><?php _e( 'Time posted: ', 'textdomain' ) . the_time( 'g:i a' ) ); ?></p>

    Displays the time using the 24 hours format parameter string ‘G:i’ (ex: 17:52).

    <p><?php _e( 'Time posted: ', 'textdomain' ) . the_time( 'G:i' ) ); ?></p>

You must log in before being able to contribute a note or feedback.