get_the_modified_date()
Retrieve the date on which the post was last modified.
Uses: get_post_modified_time()
Used By: the_modified_date()
Hooks from the function
Return
String|Int|false
. Date the current post was modified. False on failure.
Usage
get_the_modified_date( $format, $post );
- $format(string)
- PHP date format. option.
Default: 'date_format' - $post(int|WP_Post)
- Post ID or WP_Post object.
Default: current post
Examples
#1 Display the date the post was last modified:
echo 'The post was modified: '. get_the_modified_date();
#2 Specify a custom format for the date of the last change:
echo 'The post was changed: .' get_the_modified_date('F j, Y'); // Post modified: August 31, 2013 echo 'Modified: '. get_the_modified_date('F j, Y in G:i'); // Modified: January 23, 2013 at 14:38
#3 To insert html tags into the format, you must escape them with \
:
echo 'Modified: '. get_the_modified_date('j\<\s\u\p\>M\<\/\s\u\p\> Y'); // Modified: December 25<sup</sup> 2011
Changelog
Since 2.1.0 | Introduced. |
Since 4.6.0 | Added the $post parameter. |