Problem in Getting Thumbnail Image
-
I am developing a custom theme and trying to loop out all the brands in a custom layout which have brand’s name and thumbnail image. The names are coming correctly but I cannot loop out the thumbnail images can some one guide me through it. This is the wp_query I am using
<?php $brand_terms = get_terms(array( 'taxonomy' => 'berocket_brand', // Replace with your custom brand taxonomy 'hide_empty' => false, // Show even if there are no products assigned )); if (!empty($brand_terms)) { foreach ($brand_terms as $brand_term) { $brand_name = $brand_term->name; $brand_link = get_term_link($brand_term); // Get the brand image associated with the current brand term $brand_image = get_term_meta($brand_term->term_id, 'brand_image', true); ?> <div class="brand-item"> <h2><a href="<?php echo esc_url($brand_link); ?>"><?php echo esc_html($brand_name); ?></a></h2> <?php if ($brand_image) : ?> <img src="<?php echo esc_url($brand_image); ?>" alt="<?php echo esc_html($brand_name); ?>" /> <?php endif; ?> </div> <?php } } else { echo 'No brands found.'; } ?>
The topic ‘Problem in Getting Thumbnail Image’ is closed to new replies.