ruạṛ
<?php if( have_rows('service_buttons') ): ?> <div class="mx-auto mb-4"> <h3 class="text-white text-center my-7 h1"><?php the_field('services_header') ?></h3> <div class="service-buttons d-flex flex-column flex-xl-row"> <!--row--> <?php while( have_rows('service_buttons') ): ?> <?php the_row(); ?> <?php $link = get_sub_field('service_buttons_link') ?> <?php if( $link ): ?> <?php $link_url = $link['url']; $link_title = $link['title'];?> <div class="col"> <!--col-sm-6 col-lg-4--> <a class="text-decoration-none" href="<?php echo esc_url($link_url) ?>"> <div class="page-cards mb-6" style="background-image: url(<?php the_sub_field('service_buttons_image') ?> "> <h2 class="font-weight-bold text-center text-white font-weight-bold mb-0 p-5"><?php echo esc_html($link_title) ?></h2> </div> </a> </div> <?php endif; ?> <?php endwhile; ?> <br> </div> </div> <?php endif; ?>
cải xoăn