Skip to content

Instantly share code, notes, and snippets.

@FrankyCunza
Created July 29, 2019 18:51
Show Gist options
  • Select an option

  • Save FrankyCunza/499a10217c957c6e9288a59d168623e5 to your computer and use it in GitHub Desktop.

Select an option

Save FrankyCunza/499a10217c957c6e9288a59d168623e5 to your computer and use it in GitHub Desktop.
Advanced Custom Fields
//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