通过自定义元键订购 WP 帖子
我创建了一个 WordPress 自定义帖子类型,以便能够创建事件、选择事件的日期并在前端显示日期。
我在 WP 数据库的 postmeta 中添加了一个新的 meta_key,以将事件的日期存储在 UNIX 时间戳中。
我在创建一个新的 WP 查询来在我的网站上输出我的事件时没有遇到任何问题,但我试图找出如何按数据库中的 UNIX 时间戳来组织事件,而不是按 WordPress 创建事件的日期。
我似乎无法理解这件事......有什么建议吗?
I created a WordPress custom post type to be able to create events, select the event's date, and display the date on the frontend.
I added a new meta_key in the postmeta of WP's database to store the event's date in a UNIX timestamp.
I've had no trouble creating a new WP query to output my events on my site but I am trying to figure out how to organize the events by their UNIX timestamp in the database, not by the date that WordPress created the events.
I can't seem to wrap my head around the thing.. any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您的查询可以让
您在这里阅读:http://codex.wordpress。 org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
I believe your query can have
you can read about it here: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
更好地使用
pre_get_posts
:Better use
pre_get_posts
: