ACF Relationship - Basic loop (without setup_postdata)

<?php foreach( $posts as $post): // variable must be called $post (IMPORTANT) ?> <?php setup_postdata($post); ?> <a href="<?php the_field('url');?>" target="_blank"><img src="<?php the_field('image');?>"></a> <?php endforeach; ?> <?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?> <?php endif; ?>
If you are creating an element as a posttype and need to reference it in ACFs Options page use the above.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.