Skip to content

Instantly share code, notes, and snippets.

@antiden
Created January 9, 2017 07:05
Show Gist options
  • Save antiden/28c970e97d7c4f59ba4a938bcf193b5b to your computer and use it in GitHub Desktop.
Save antiden/28c970e97d7c4f59ba4a938bcf193b5b to your computer and use it in GitHub Desktop.
WP ACF Relationship
<?php $posts = get_field('relationship_field_name'); ?>
<?php if( $posts ): ?>
<ul>
<?php foreach( $posts as $post): ?>
<?php setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<span>Custom field from $post: <?php the_field('author'); ?></span>
</li>
<?php endforeach; ?>
</ul>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment