Created
April 6, 2016 12:59
-
-
Save baltazarparra/95e02417f9ecc7c9c211121d1fcb129c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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