使用OR运算符的Visual Composer自定义查询

时间:2016-06-28 20:26:40

标签: php wordpress visual-composer

我正在通过Visual Composer使用Wordpress和来自事件日历的结果网格。我有查询工作,只要我只想从一个事件类别拉,但我需要从多个类别拉。

我已尝试使用OR运算符的所有技巧,但无法使其工作。我的代码可以从一个类别中提取:

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

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

1 个答案:

答案 0 :(得分: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)