如何获取"the_date"的unix时间戳

2 php wordpress

如何获得已发布帖子的unix时间戳("the_date"或"the_time"函数)?

Ben*_*enM 5

只需传入Epoc参数即可.the_time()将输出字符串; get_the_time()将它返回到变量以供其他地方使用.

$timestamp = get_the_time('U');
Run Code Online (Sandbox Code Playgroud)