您可以在wp query中使用元查询来获取所需的帖子
$args = array(
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'city\',
\'value\' => \'Melbourne\',
\'compare\' => \'NOT LIKE\'
),
array(
\'key\' => \'city\',
\'value\' => \'Melbourne\',
\'compare\' => \'NOT EXISTS\'
)
)
);
$query = new WP_Query( $args );