アトリエロワ

Advanced custom field Pro 繰り返し記載

 <?php if(have_rows('●●●')): 
    $faq_counter = 1; //カウンタ変数の初期化
?>
    <?php while(have_rows('●●●')): the_row(); ?>

        <div class="area-txt">
            <?php
                $faq_ques = get_sub_field('▲▲▲');
                $faq_ans = get_sub_field('■■■');
                $label_id = 'label' . $faq_counter; //各FAQ項目に一意なIDを生成
                echo '<input type="checkbox" id="' . $label_id . '" />';
                if ( $faq_ques ) :
                    echo '<label for="' . $label_id . '">' . $faq_ques. '</label>';
                endif;

                if ( $faq_ans ) :
                    echo '<div class="ceh-box">' . $faq_ans . '</div>';
                endif;

                $faq_counter++;
            ?>
        </div>

    <?php endwhile; ?>
<?php endif; ?>
<div class="area-txt">
  <input type="checkbox" id="label1" />
  <label for="label1">質問1</label>
  <div class="ceh-box">回答1</div>
</div>
<div class="area-txt">
  <input type="checkbox" id="label2" />
  <label for="label2">質問2</label>
  <div class="ceh-box">回答2</div>
</div>

HOME > wordpress設計術 > Advanced custom field Pro 繰り返し記載

wordpress設計術

wordpress設計術