カテゴリー
WordPress

【WordPress】固定ページに設置したリピーターフィールドを呼び出してぐるぐる

固定ページに設置したリピーターフィールドを呼び出してぐるぐる

 

 <ul>
	 <?php
$the_query = new WP_Query( 'page_id=130' );//postid 130を指定
if ($the_query->have_posts()) :
while ( $the_query->have_posts() ) : $the_query->the_post();?>
<?php while(the_repeater_field('xxx_repeat', $post->ID)):?>
    <li>
     <a href="<?php the_sub_field('xxx_url');?>" target="_blank">
                          <img src="<?php the_sub_field('xxx_img');?>" />
                      </a>
    </li>
	<?php endwhile ; endwhile ; endif ; wp_reset_postdata();?>
  </ul>

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です