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);
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.