

Si tu em dius vine ho deixo tot… però digue’m vine
[insert_php]
$your_repeater = get_field(‘edicion’);
if($your_repeater){
while( have_rows(‘edicion’) ): the_row();
$edicion_nombre = get_sub_field(‘edicion_nombre’);
$edicion_precio = get_sub_field(‘edicion_precio’);
echo ”;
echo ‘‘ . $edicion_nombre . ‘ – ‘ . $edicion_precio . ‘€
‘;
echo ‘
‘;
if( have_rows(‘enlaces’) ):
while( have_rows(‘enlaces’) ): the_row();
$enlace_nombre = get_sub_field(‘enlace_nombre’);
$enlace_url = get_sub_field(‘enlace_url’);
echo ‘Comprar en ‘ . $enlace_nombre . ‘
‘;
endwhile;
endif;
echo ‘
‘;
endwhile;
}
[/insert_php]

