-1

我正在通过 Visual Composer 和来自 The Events Calendar 的结果网格使用 Wordpress。只要我只想从一个事件类别中提取但我需要从多个类别中提取,我就可以使用查询。

我已经尝试了使用 OR 运算符的所有技巧,但无法让它发挥作用。我拥有的代码可以从一个类别中提取:

 post_type=tribe_events&post_status=publish&_EventStartDate=>$today&orderby=_EventStartDate&order=asc&tribe_events_cat=entertainment

我需要从娱乐和音乐会中提取结果。

4

1 回答 1

0

我做了足够的挖掘和学习来弄清楚如何使用 WP_Query

https://developer.wordpress.org/reference/functions/query_posts/

以及如何通过 http_build_query 解析事物

http://php.net/manual/en/function.http-build-query.php

这是解决方案:

post_type=tribe_events&post_status=publish&_EventStartDate=>$today&orderby=_EventStartDate&order=asc&include_category=(concerts,entertainment)
于 2016-06-30T21:33:47.820 回答