如何从 Wordpress 查询中删除自定义字段重复项

How to remove custom field duplicates from Wordpress query

自定义 post 是一家商店。每个城市都有几家商店。 我需要显示从自定义 post 中的自定义字段中获取的城市列表,但我想删除重复项。任何帮助都会很棒。

$the_query = new WP_Query( 
array(
'numberposts' => -1,
'post_type' => 'store',
'meta_key' => 'city',
'orderby'          => 'meta_value',
'order'            => 'ASC',
)
);
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
    $the_query->the_post();
    echo '<li>' . get_field('city'  ) . '</li>';
}
echo '</ul>';
} else {

}
wp_reset_postdata();

如果你对城市使用自定义分类法会容易得多,wordpress 有可以过滤它们的税收查询。