■ギャラリー
<?php
if ( have_posts () ) :
while ( have_posts() ) :
the_post();
?>
<!--ギャラリー取得--->
<?php
$fields = $cfs->get('shop_gallery');
foreach ($fields as $field) :
?>
<?php
$attachment_id = $field['gallery_photo'];
$sample_photo = wp_get_attachment_image($attachment_id,'full');
echo $sample_photo;
?>
<?php
endforeach;
?>
<?php
endwhile;
endif;
?>