Switch language
wpseek on Twitter


A WordPress-centric search engine for devs and theme authors




get_lastpostdate [ ]

get_lastpostdate ( $timezone = 'server' )
Parameters:
  • (string) $timezone The location to get the time. Can be 'gmt', 'blog', or 'server'.
Uses:
Returns:
  • (string) The date of the last post.
Defined at:
Codex



Retrieve the date that the last post was published.

The server timezone is the default and is the difference between GMT and server time. The 'blog' value is the date when the last post was posted. The 'gmt' is when the last post was posted in GMT formatted date.

Source

function get_lastpostdate($timezone = 'server') {
	return apply_filters( 'get_lastpostdate', _get_last_post_time( $timezone, 'date' ), $timezone );
}

Examples [ wp-snippets.com ]

Top Google Search Results

More ...

0 User Note(s)

None yet. Be the first!

Add New ...