标签: php wordpress
如何获得已发布帖子的unix时间戳(“the_date”或“the_time”函数)?
答案 0 :(得分:5)
只需传入Epoc参数即可。 the_time()将输出字符串; get_the_time()会将其返回到变量中以供其他地方使用。
the_time()
get_the_time()
$timestamp = get_the_time('U');
答案 1 :(得分:-5)
简单如下:
$unixTimestamp = time();