有这样的查询:
$key = 'xbox';
$test = get_posts(
array(
'suppress_filters' => false,
's' => $key,
'numberposts' => 10,
'post_type' => array('games'),
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'platforms',
'field' => 'slug',
'terms' => $key,
),
array(
'taxonomy' => 'genres',
'field' => 'slug',
'terms' => $key,
),
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => $key,
)
)
)
);
我需要搜索s
和税务查询。
例如,如果我搜索xbox我希望该查询可以找到并在我的帖子内容/ titlte word xbox ..但也检查术语LIKE %xbox%
中是否存在任何帖子
有什么建议吗?