Support

Account

Home Forums ACF PRO output the_field of related posts with ACF Relationship Reply To: output the_field of related posts with ACF Relationship

  • 
    <?php 
    $posts = get_field('product_id');
    
        if( $posts ) {
          foreach ($posts as $p) {
               // this goes where you want the fields from the related post
               the_field('field_name', $p->id);
          }
        }