Created
November 13, 2019 05:25
-
-
Save hmowais/f6dab0185954d154140a28d33ade57e5 to your computer and use it in GitHub Desktop.
Add ACF Images in search results
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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