我有一個自定義字段Field Name: "participants"
與Field Type: "User"
。Wordpress WP_Query「NOT IN」not working
我想在元查詢中使用「NOT IN」,但它不起作用。
$getUid = $_REQUEST['uid'];
$args = [
'post_type' => 'polls',
'post_status' => 'publish',
'meta_query' => [
'relation' => 'AND',
[
'key' => 'participants',
'value' => [$getUid],
'compare' => "NOT IN"
]
]
];
$the_query = new WP_Query($args);
return $the_query;
能不能細說值 'UID'] 「不工作?」錯誤輸出或預期與實際結果是有幫助的甚至是必不可少的。 – Jacob