Displaying Category Images
-
I want to put together a page with a custom template that will display all the Ecommerce WD categories with their image. I’ve found a couple ways to list out all the categories, but I can’t get the image URL.
I’ve tried using the category ID with wp_get_attachment_image, wp_get_attachment_url and wp_get_attachment_image_src none returned anything.
This is how I am getting my ID and Category name.
<?php $categories = get_categories( array( 'taxonomy' => 'wde_categories', 'orderby' => 'name' ) ); foreach($categories as $c){ $cat_id = $c->term_id; $cat_url = esc_url(get_category_link($cat_id)); echo '<li><a href="'.$cat_url.'">'.$c->name.'</a></li>'; } ?>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Displaying Category Images’ is closed to new replies.