这是我的WP_Query参数的数组。
Array
(
[showposts] => 4
[paged] => 1
[post_type] => post
[post_content] => tree
[category__and] => Array
(
[0] => 6
[1] => 15
[2] => 28
)
)
我想返回它们在类别6,15,28中的帖子,以及post_content包含单词tree的位置。
我的问题是,我为其中包含单词tree的帖子返回了几个重复的结果。理想情况下,我想返回一个。
任何人都知道如何修复或改进这个?
答案 0 :(得分:0)
我发现了这个问题,我不应该尝试过滤post_content,而是's'
e.g。
Array
(
[showposts] => 4
[paged] => 1
[s] => post
[post_content] => tree
[category__and] => Array
(
[0] => 6
[1] => 15
[2] => 28
)
)