Support

Account

Home Forums Add-ons Repeater Field Get Post Featured Image and Content | New to ACF – Cant find the solution Reply To: Get Post Featured Image and Content | New to ACF – Cant find the solution

  • I am assuming here that you are using a post object field to select the member on the front page and that this field is returning a “Post Object”.

    
    // first you get the value of the field on the front page
    $member = get_field('featured_member');
    // then you get the fields from this members post by supplying the correct post ID
    $image = get_field('featured_image', $member->ID);