<?php
$args = array(
'meta_key' => 'shopArea', //フィールド名
'meta_value' => 'east', //値(カスタムフィールド作成画面の「選択肢」で入力した左側の部分。文字列として比較)
'posts_per_page' => -1 //該当記事全てを表示
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile; endif; ?>
<?php wp_reset_postdata();?>