get_post_timestamp
get_post_timestamp ( $post = null, $field = 'date' )
Parameters:- (int|WP_Post) post Optional. Post ID or post object. Default is global `$post` object.
- (string) field Optional. Published or modified time to use from database. Accepts 'date' or 'modified'. Default 'date'.
Returns:- (int|false) Unix timestamp on success, false on failure.
Defined at: - Introduced in WordPress: 5.3.0
- Deprecated in WordPress: —
Description
Retrieves post published or modified time as a Unix timestamp.Note that this function returns a true Unix timestamp, not summed with timezone offset
like older WP functions.