Home › Forums › ACF PRO › Create a widget with ACF › Reply To: Create a widget with ACF
Figured out the answer, see below. This snippet is added to the widget class in my custom widget file.
if (get_field('upload_image', 'widget_' . $widget_id)) {
$attachment_id = get_field('upload_image', 'widget_' . $widget_id);
$size = "full";
$image = wp_get_attachment_image_src( $attachment_id, $size );
$alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
echo '<img alt="'.$alt.'" src="' . $image[0] . '" />';
}
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.