get_lastpostmodified()
Get the timestamp of the last time any post was modified.
The server timezone is the default and is the difference between GMT and server time. The 'blog' value is just when the last post was modified. The 'gmt' is when the last post was modified in GMT time.
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
Return
String
. The timestamp in 'Y-m-d H:i:s' format, or false on failure.
Usage
get_lastpostmodified( $timezone, $post_type );
- $timezone(string)
- The timezone for the timestamp. See get_lastpostdate() for information on accepted values.
Default: 'server' - $post_type(string)
- The post type to check.
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. |