Home › Forums › General Issues › images as choices in select field › Reply To: images as choices in select field
Set up the Post Object field to return Post ID, then use that ID to get the field from your CPT.
// this would be somewhere in your post loop
$logo_post_id = get_field('post_object_field');
if ($logo_post_id) {
get_field('logo_image_field', $logo_post_id)
// what you do next depends on if your image field returns
// Image Array, Image URL or Image ID
}
I usually like returning Image IDs and then using wp_get_attachment_image_src() to get the image size I need rather then sorting through an array or using the URL returned by ACF so that I can determine the size used in the code.
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!
CPT registration is coming to ACF! We demoed the new feature during the most recent session of ACF Chat Fridays. Check out the summary for the details. https://t.co/k2KQ3WWBAz
— Advanced Custom Fields (@wp_acf) March 7, 2023
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.