Set or change your location.
Choose Your State
$loc_state_header = "start";
$args = array(
'post_type' => 'location-post',
'posts_per_page' => -1,
'meta_key' => 'location_state',
'orderby' => 'meta_value',
'order' => 'ASC'
);
$locations = new WP_Query($args);
if ($locations->have_posts()) :
while ($locations->have_posts()) : $locations->the_post();
if (get_field('location_state') != $loc_state_header) {
echo '';
$loc_state_header = get_field('location_state');
}
endwhile;
wp_reset_postdata();
endif;
?>