Template Tags/the modified time
Материал из WordPress Wiki
Содержание |
Description
This tag displays the time (and date) a post was last modified and is similar to the functionality of the_time(), which displays the time (and date) a post was created. This tag must be used within The Loop. If no format parameter is specified, the Default date format (please note that says Date format) setting from Administration > Settings > General is used for the display format.
If the post or page is not yet modified, the modified time is the same as the creation time.
If you want to display both the modified time and the creation time, you may want to use an if statement (e.g. if (get_the_modified_time() != get_the_time())) to avoid showing the same time/date twice.
Usage
%%% <?php the_modified_time('d'); ?> %%%
Examples
Default Usage
Displays the time (date) the post was last modified, using the Default date format setting (e.g. F j, Y) from Administration > Settings > General.
<p>Last modified: <?php the_modified_time(); ?></p>
Time in the 12-hour format (am/pm)
If a post was modified at 10:36pm, this example displays the time the post was last modified using the 12-hour format parameter string 'g:i a'.
<p>Time last modified: <?php the_modified_time('g:i a'); ?></p>
Time in the 24-hour format
If a post was modified at 10:36pm, this example displays the time the post was last modified using the 24-hour format parameter string 'G:i'.
<p>Time last modified: <?php the_modified_time('G:i'); ?></p>
Date as Month Day, Year
Displays the last modified time and date in the date format 'F j, Y' (ex: December 2, 2006), which could be used to replace the tag the_modified_date().
<div>Last modified: <?php the_modified_time('F j, Y'); ?></div>
Date and Time
Displays the date and time.
<p>Modified: <?php the_modified_time('F j, Y'); ?> at <?php the_modified_time('g:i a'); ?></p>
Parameters
- d
- (string) The format the time is to display in. Defaults to the date format configured in your WordPress options. See Formatting Date and Time.