Created
July 29, 2019 18:51
-
-
Save FrankyCunza/499a10217c957c6e9288a59d168623e5 to your computer and use it in GitHub Desktop.
Advanced Custom Fields
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
| //codigo repeater simple | |
| <?php if ( have_rows('texto_blog_resaltado') ) : ?> | |
| <?php while (have_rows('texto_blog_resaltado') ) : the_row(); | |
| // vars | |
| $texto_blog_resaltado = get_sub_field('escribir_texto_blog_resaltado'); | |
| ?> | |
| <p><?php echo $texto_blog_resaltado; ?></p> | |
| <?php endwhile; ?> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment