Home › Forums › ACF PRO › Relationship field in a block › Reply To: Relationship field in a block
@trenbania Just to make sure, are the fields ‘scientific_name’, ‘family’ and ‘scientific_tree_family’ assigned to the post type you’re pulling in via the relationship field? And those fields are not in group field or repeater? You shouldn’t have to but may need to pass the post id when retrieving the field values.
Maybe try:
$posts = get_field('info_from_growing');
if( $posts ) {
foreach( $posts as $post) { // variable must be called $post (IMPORTANT)
setup_postdata($post);
$id = $post->ID;
$scientificName = get_field('scientific_name', $id);
$family = get_field('family', $id);
$scientificTreeFamily = get_field('scientific_tree_family', $id);
// do something with the values
?>
<div>
<p>Scientific Name: <?php echo $scientificName; ?></p>
<p>Family: <?php echo $family; ?></p>
<p>Tree: <?php echo $scientificTreeFamily; ?></p>
</div>
<?php
}
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.