自定义帖子是商店。每个城市都有很少的商店。 我需要在自定义帖子中显示从自定义字段中获取的城市列表,但我想删除重复项。任何帮助都会很棒。
$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();
答案 0 :(得分:0)
如果你对城市使用自定义分类法会更容易,wordpress有可以过滤它们的税务查询。