2016-06-28 26 views
0

我正在通過Visual Composer和來自事件日曆的結果的帖子網格使用Wordpress。只要我只想從一個事件類別中抽取數據,我就可以使用查詢,但我需要從多個類別中抽取數據。使用OR運算符的Visual Composer自定義查詢

我已經嘗試了使用OR操作符的所有技巧,無法使其工作。我有的代碼從一個類別拉動:

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

我需要拉娛樂和音樂會的結果。

回答

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)