Custom Field Suite のまとめ2? ループフィールドの出力方法基本

■ギャラリー

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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;
?>