我正在尝试将 wp 搜索扩展到 postmeta。这是我的片段:
function filtroRicerca($query) {
if ($query->is_search):
$post_type = $query->get('post_type');
$post_type[] = 'ordine';
$query->set('post_type', $post_type );
$meta_query = $query->get('meta_query');
$meta_query['relation'] = 'OR';
$meta_query[] = array(
'key' => 'ritiro_indirizzo',
'value' => $query->query_vars['s'],
'compare' => 'LIKE'
);
$query->set( 'meta_query', $meta_query );
endif;
return $query;
};
add_filter('pre_get_posts','filtroRicerca');
这应该很容易,但我看不出我错在哪里!如果我搜索字符串,则获取的结果仅匹配帖子标题、内容等。如果我仅在元字段中查找内容,则不会返回任何行。我做错了什么?
有一个 WP bug,你需要将 $meta_query[] = 封装在另一个数组中:
$meta_query[] = array(
array(
'key' => 'ritiro_indirizzo',
'value' => $query->query_vars['s'],
'compare' => 'LIKE'
)
);
此外,您不需要返回 $query 对象。