Home › Forums › Backend Issues (wp-admin) › Issue with acf/fields/flexible_content/layout_title & repeater fields › Reply To: Issue with acf/fields/flexible_content/layout_title & repeater fields
Hi @newjenk
The image field will send the image ID in the AJAX request, so you need to get the image URL from this ID. I think you can use the wp_get_attachment_image_src() function to do that. So, it should be like this:
$image_id = $row['field_1234567890abc'];
$image_data = wp_get_attachment_image_src($image_id, 'full');
if( $image_data ){
$image_url = $image_data[0];
echo $image_url;
}
Where “field_1234567890abc” is the image field key.
Hope this helps 🙂
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.