Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save baltazarparra/95e02417f9ecc7c9c211121d1fcb129c to your computer and use it in GitHub Desktop.
Save baltazarparra/95e02417f9ecc7c9c211121d1fcb129c to your computer and use it in GitHub Desktop.
<?php if(have_rows('categoria_menu')) : while(have_rows('categoria_menu')) : the_row(); ?>
<div class="menu-item grid-8">
<h2><?php the_sub_field('nome_categoria'); ?></h2>
<ul>
<?php if(have_rows('prato_menu')) : while(have_rows('prato_menu')) : the_row(); ?>
<li>
<span><sup>R$</sup><?php the_sub_field('preco_prato'); ?></span>
<div>
<h3><?php the_sub_field('nome_prato'); ?></h3>
<?php the_sub_field('descricao_prato'); ?>
</div>
</li>
<?php endwhile; else: endif; ?>
</ul>
</div>
<?php endwhile; else: endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment