我需要筛选我的自定义帖子类型“events“按分类法元字段”city“。但我不能让它工作,需要一些帮助?
这是我已经拥有的。但没有结果。。。
function aa_pre_get_posts($query) {
if (is_admin() || $query->get(\'post_type\') != \'my-events\') return;
if(isset($_GET[\'city\']) and trim($_GET[\'city\']))
{
$query->set(
\'tax_query\',
array(
\'relation\' => \'AND\',
array(
\'taxonomy\' => \'my_location\',
\'orderby\' => \'meta_value\',
\'meta_query\' => [[
\'key\' => \'city\',
\'value\' => sanitize_text_field($_GET[\'city\']),
\'compare\' => \'LIKE\'
]],
)
)
);
}
}
add_action(\'pre_get_posts\', \'aa_pre_get_posts\');
那么,怎么了?