Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created November 13, 2019 05:25
Show Gist options
  • Save hmowais/f6dab0185954d154140a28d33ade57e5 to your computer and use it in GitHub Desktop.
Save hmowais/f6dab0185954d154140a28d33ade57e5 to your computer and use it in GitHub Desktop.
Add ACF Images in search results
<?php
global $post;
$terms = get_the_terms( $post->ID, 'stores' );
//$nterms = get_the_terms( $post->ID, 'product_tag' );
foreach ($terms as $term ) {
$store_id = $term->term_id;
//$product_cat_name = $term->name;
break;
}
$value = get_field('promo_thumbnail', $term);
?>
<?php echo wp_get_attachment_image_src($value,'full')[0];?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment