문제

In WordPress time functions, such as get_post_time(), one can pass a couple of formats that I do not understand what they do. Those are U and G. What are those exactly? Documentation is pretty vague.

Thanks.

도움이 되었습니까?

해결책

The U and G are not WordPress specific. get_post_time() is using the same datetime formats as the default PHP date method.

Here is the documentation for all of the formats: https://www.php.net/manual/en/function.date.php

Specific to the question:

U is Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)

G is 24-hour format of an hour without leading zeros. 0 through 24

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top