Languages: English • Deutsch • 日本語 (Add your language)
Displays or returns the date of a post, or a set of posts if published on the same day.
<?php the_time( get_option( 'date_format' ) ); ?>
to add the date set in the admin interface.This tag must be used within The Loop.
<?php the_date( $format, $before, $after, $echo ); ?>
(string|null) Null if displaying, string if retrieving.
Displays the date using defaults.
<?php the_date(); ?>
Displays the date using the '2007-07-23'
format (ex: 2004-11-30), inside an <h2> tag.
<?php the_date('Y-m-d', '<h2>', '</h2>'); ?>
Returns the date in the default format inside an <h2> tag and assigns it to the $my_date variable. The variable's value is then displayed with the PHP echo command.
<?php $my_date = the_date('', '<h2>', '</h2>', FALSE); echo $my_date; ?>
Since: 0.71
the_date() is located in wp-includes/general-template.php
.
get_calendar(), get_day_link(), get_month_link(), get_the_date(), get_the_time(), get_year_link(), single_month_title(), the_date(), the_date_xml(), the_modified_date(), get_the_modified_date(), the_modified_time(), get_the_modified_time(), the_time()