Muhammad Asfund
Muhammad Asfund

Reputation: 97

How to show wordpress category image on frontend

I want this image to show on my frontend.

**enter image description here**

Kindly help me out. Thanks

Upvotes: 1

Views: 776

Answers (1)

Nisha Sharma
Nisha Sharma

Reputation: 255

Try this code:

<?php
   $categories = get_the_category();
   foreach ( $categories as $category ) { 
   echo '<img src="' . esc_url( 'http://example.com/images/' . intval( $category- 
   >term_id ) . '.jpg' ) . '" alt="' . esc_attr( $category->name ) . '" />'; 
}
?>

Upvotes: 1

Related Questions