Support

Account

Home Forums General Issues Relationship field display relationship related post Reply To: Relationship field display relationship related post

  • I solved it! I put in the foreach a new foreach with new question:

    $posts = get_field (‘relationship1’);
    foreach ($posts as $post) :

    $subposts = get_field(‘relationship2’, $post->ID);
    foreach ($subposts as $subpost) :
    echo get_the_title($subpost->ID);

    endforeach; endforeach;