Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 30, 2014 14:53
Show Gist options
  • Save jpcontrerasv/88bf1e2f014399dc420b to your computer and use it in GitHub Desktop.
Save jpcontrerasv/88bf1e2f014399dc420b to your computer and use it in GitHub Desktop.
WP > ACF For each post
<?php $post_relacionados = get_field('artículos_relacionados');
if( $post_relacionados ): ?>
<?php foreach( $post_relacionados as $post): ?>
<?php setup_postdata($post); ?>
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment