Support

Account

Home Forums General Issues Simple ? : Displaying a relationship field Reply To: Simple ? : Displaying a relationship field

  • https://www.advancedcustomfields.com/resources/relationship/

    
    $authors = get_field('author_relationship_field');
    if ($authors) {
      foreach ($authors as $post) {
        setup_post_data($post);
        the_title();
      }
      wp_reset_postdata();
    }