wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_post_timestamp › WordPress Function

Od5.3.0
Przestarzałyn/a
get_post_timestamp ( $post = null, $field = 'date' )
Parametry: (2)
  • (int|WP_Post) $post Optional. Post ID or post object. Default is global `$post` object.
    Wymagane: Nie
    Domyślny: null
  • (string) $field Optional. Published or modified time to use from database. Accepts 'date' or 'modified'. Default 'date'.
    Wymagane: Nie
    Domyślny: 'date'
Powrót:
  • (int|false) Unix timestamp on success, false on failure.
Zdefiniowane na:
Codex:

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.


Źródło

function get_post_timestamp( $post = null, $field = 'date' ) {
	$datetime = get_post_datetime( $post, $field );

	if ( false === $datetime ) {
		return false;
	}

	return $datetime->getTimestamp();
}