Skip to content

Instantly share code, notes, and snippets.

@hiiightower
Forked from ashby/ACF: Post Object
Created January 30, 2018 01:50
Show Gist options
  • Save hiiightower/3f048c6c40c9373ab92f89dd292d437e to your computer and use it in GitHub Desktop.
Save hiiightower/3f048c6c40c9373ab92f89dd292d437e to your computer and use it in GitHub Desktop.
ACF: Post Object
<?php $post_objects = get_field('post_objects'); ?>
<?php if( $post_objects ): ?>
<?php foreach( $post_objects as $post): ?>
<?php setup_postdata($post); ?>
<?php the_title(); ?>
<?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