Home › Forums › Front-end Issues › ACF + Backstretch Help › Reply To: ACF + Backstretch Help
ok, the above is actually working for posts and pages if i use the image field
but not for taxonomies (I’ve added an image field to taxonomy terms, so I can have a nice hero for taxonomy archives)
think i need to change this
$image = array( ‘src’ => get_field(‘product_image’));
wp_localize_script( ‘digital-backstretch-set’, ‘BackStretchImg’, $image );
to work with this
// vars
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
// load thumbnail for this taxonomy term (term object)
$thumbnail = get_field(‘thumbnail’, $queried_object);
// load thumbnail for this taxonomy term (term string)
$thumbnail = get_field(‘thumbnail’, $taxonomy . ‘_’ . $term_id);
but not sure how
at the moment I’m getting the img showing in backstretch but no src…
any help appreciated !
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.