WordPress ACF Group inside Repeater (Grup içinde Repeater Kullanımı)

Bir grup içinde tekrarlayıcı varsa değerleri alıp ekrana aşağıdaki kodla basabiliriz

<?php
 
if( have_rows('your_group') ): while ( have_rows('your_group') ) : the_row(); 
 
    if( have_rows('your_repeater') ): while ( have_rows('your_repeater') ) : the_row();       
 
        echo get_sub_field('repeater_sub_field');
 
    endwhile; endif;
 
endwhile; endif;
 
?>

Standart Grup içinden içerik gösterme kodu:

<?php 
 
$group_var = get_field['your_group']; 
 
$group_sub_field_var = $group_var['group_sub_field']
 
?>
Bu İçeriğe Puan Verebilirsiniz
[Toplam: 1 Ortalama: 5]

Bir cevap yazın

E-posta hesabınız yayımlanmayacak.

This site uses Akismet to reduce spam. Learn how your comment data is processed.