get_lastpostmodified()
Gets the date and time when the specified type of post was last edited.
1 time — 0.027198 sec (extremely slow) | 50000 times — 0.80 sec (very fast) | PHP 7.0.5, WP 4.4.2
Hooks from the function
Returns
String. The timestamp.
Usage
get_lastpostmodified( $timezone, $post_type );
- $timezone(string)
The time zone for the timestamp. Can be:
server- internal server time. GMT + server time zone.blog- uses the time from thepost_modifiedfield. GMT + site time zone.gmt- uses the time from thepost_modified_gmtfield. GMT without offsets.
Default: 'server'
- $post_type(string)
- The name of the post type.
Default: 'any'
Examples
#1 Demo
echo get_lastpostmodified( 'server', 'any' ); // output: 2016-04-05 17:56:29.000000 echo get_lastpostmodified( 'blog', 'post' ); // output: 2016-03-05 01:46:44 echo get_lastpostmodified( 'gmt', 'post' ); // output: 2016-03-04 20:46:44
Changelog
| Since 1.2.0 | Introduced. |
| Since 4.4.0 | The $post_type argument was added. |