$args = array(
'post_type'=>'visa-country',
'posts_per_page'=>-1,
'orderby'=>'title',
'order'=>'ASC'
);
$query = new WP_Query($args);
if($query->have_posts()):
echo '<div class="country-grid">';
while($query->have_posts()):
$query->the_post();
?>
<div class="country-box">
<a href="<?php the_permalink(); ?>">
<div class="flag">
<?php the_post_thumbnail('thumbnail'); ?>
</div>
<h3>
<?php the_title(); ?>
</h3>
<p>
View all visa requirements →
</p>
</a>
</div>
<?php
endwhile;
echo '</div>';
endif;
single-visa-country.php
<?php get_header(); ?>
<h1>
<?php the_title(); ?>
</h1>
<p>
Country Code:
<?php echo get_field('country_code'); ?>
</p>
<p>
Visa Free Countries:
<?php echo get_field('visa_free'); ?>
</p>
<p>
eVisa Available:
<?php echo get_field('evisa_available'); ?>
</p>
<p>
Visa Required:
<?php echo get_field('visa_required'); ?>
</p>
<?php get_footer(); ?>