Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用自定义 wp_query 的事件页面,以便我可以将帖子拆分为即将发生的事件和过去的事件。为此,我需要将日期存储在数据库 Y/m/d 格式中,但希望它显示在前端 d/m/y 上。关于我应该如何做到这一点的任何帮助,我可以用 jquery 扭转它,但可能有更好的方法?
谢谢
该页面可能正在使用the_date()函数。
如果是这样,请使用格式参数将其修改为如下所示:
the_date('d/m/Y');
另请查看有关格式化日期和时间的 Codex 页面。