我想从posts-table(post_parent = 0)返回所有父事件。
当我运行原始sql查询时,这非常正常,但是当我在PHP类中运行wp_query时,我只会从WP的posts-table中收到8行。我关闭缓存并尝试了其他的东西,但我无法理解为什么不是WP查询返回所有23行。谢谢你的提示。
原始SQL查询(工作正常 - 23行):
#include <iostream>
#include <vector>
using namespace std;
int main()
{
string a;
cin >> a;
for (int i = 0; i < a.size(); i++) {
if (a[i] == '(') {
cout << "/";
} else if (a[i] == ')') {
cout << "\\";
}
}
return 0;
}
WP查询(仅返回8行,这是错误的)
select * from wp_posts
where post_type = 'tribe_events' and post_parent = 0 and post_status = 'publish';