Opened 17 years ago
Closed 17 years ago
#2374 closed enhancement (fixed)
Create a the_modified_date() Template Tag
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.1 | Priority: | low |
Severity: | normal | Version: | 1.2 |
Component: | Template | Keywords: | modified, date bg|has-patch bg|commit |
Focuses: | Cc: |
Description
Dscription
Behaviour and parameters should be the same as the_date(), except that it should run every time (the_date() only displays the date the first time it's called).
Purpose
To display the date the post/page was last modified.
Notes
This tag might not be relevant for posts, but it's relevant for pages, as they get modified more often. Furthermore, the modified date is saved in the database anyway, but the only way to retrieve it is through manual SQL, or so it seems.
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
The is
the_modified_time
andget_the_modified_time
which you could use.Like
the_time
andthe_date
these can both take a PHP timedate format string and so you can show the date from either of the above.e.g.
the_modified_time('F jS, Y');
However adding
the_modified_date
andget_the_modified_date
looks like a good idea and I've hacked a patch together.Untested!