the_time( string $d = '' )
Display the time at which the post was written.
Description Description
Parameters Parameters
- $d
-
(string) (Optional) Either 'G', 'U', or php date format.
Default value: ''
Source Source
File: wp-includes/general-template.php
function the_time( $d = '' ) {
/**
* Filters the time a post was written for display.
*
* @since 0.71
*
* @param string $get_the_time The formatted time.
* @param string $d The time format. Accepts 'G', 'U',
* or php date format.
*/
echo apply_filters( 'the_time', get_the_time( $d ), $d );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 0.71 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Date as Month Day, Year
Displays the time in the date format ‘F j, Y’ (ex: December 2, 2004), which could be used to replace the tag the_date().
<div><?php the_time('F j, Y'); ?></div>Basic Example
Displays the time using your WordPress defaults.
Time as AM/PM VS. 24H format
Displays the time using the format parameter string ‘g:i a’ (ex: 10:36 pm).
Displays the time using the 24 hours format parameter string ‘G:i’ (ex: 17:52).
Date and Time
Displays the date and time.
<p>Posted: <?php the_date('F j, Y'); ?> at <?php the_time('g:i a'); ?></p>Example output is:
Posted: July 17, 2007 at 7:19 am