get_the_modified_date()
Gets the date (time) when the post was last modified.
This function is usually used inside the loop.
Use get_the_modified_time( $d, $post ) to get the modification time of the post.
Uses: get_post_modified_time()
Used By: the_modified_date()
Hooks from the function
Returns
String|Int|false. The modification date.
Usage
get_the_modified_date( $d, $post );
- $d(string)
- The format in which the date will be displayed. Specify in the format accepted in PHP: see here.
Default: get_option('date_format') - $post(int/WP_Post)
- ID or post object for which to get the modification date. Since Version 4.6.
Default: null (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. |