Country Post Query
// WP_Query arguments
$args = array(
	'post_type'              => array( 'post' ),
	'post_status'            => array( 'publish' ),
	'posts_per_page'         => '1',
);
// The Query
$country1 = new WP_Query( $args );
// The Loop
if ( $country1->have_posts() ) {
	while ( $country1->have_posts() ) {
		$country1->the_post();
		// do something
	}
} else {
	// no posts found
}
// Restore original Post Data
wp_reset_postdata();