Title: ilpert's Replies | WordPress.org

---

# ilpert

  [  ](https://wordpress.org/support/users/ilpert/)

 *   [Profile](https://wordpress.org/support/users/ilpert/)
 *   [Topics Started](https://wordpress.org/support/users/ilpert/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ilpert/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ilpert/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ilpert/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ilpert/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ilpert/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] link title](https://wordpress.org/support/topic/link-title-4/)
 *  [ilpert](https://wordpress.org/support/users/ilpert/)
 * (@ilpert)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/link-title-4/#post-9748327)
 * Hello, try this code from the plugin documentation:
 *     ```
           $terms = apply_filters( 'taxonomy-images-get-terms', '', array(
               'taxonomy'     => 'product_tag',     
               'hide_empty' => false,
               ) );
               if ( ! empty( $terms ) ) {
                   print '<div class="container" style="padding-top:50px;">';
                   foreach ( (array) $terms as $term ) {
   
                   print'<div class="listcategory" >';
                   print'<div class="category-content" ><a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '"><h2>'.$term->name.'</h2></div>';
                   print'</a>';
                   print '<div class="category-thumb">' . wp_get_attachment_image( $term->image_id, 'medium' ) . '</div>';
                   print '<div class="cat-description">'.$term->description.'</div>';
                   print '</div>';
                   }
                   print '</div>';
   
               }
       ```
   
    -  This reply was modified 8 years, 5 months ago by [ilpert](https://wordpress.org/support/users/ilpert/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] image for list of terms of a taxo](https://wordpress.org/support/topic/image-for-list-of-terms-of-a-taxo/)
 *  [ilpert](https://wordpress.org/support/users/ilpert/)
 * (@ilpert)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/image-for-list-of-terms-of-a-taxo/#post-9748298)
 * Hello, this example is in the doc of the plugin.
 * Use this to retrieve the name, the link and the url of the image.
 *     ```
       $terms = apply_filters( 'taxonomy-images-get-terms', '', array(
               'taxonomy'     => 'categorie_prodotti',
               ) );
               if ( ! empty( $terms ) ) {
                   print '<div class="container" style="padding-top:50px;">';
                   foreach ( (array) $terms as $term ) {
   
                   print'<div class="listcategory" >';
                   print'<div class="category-content" ><a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '"><h2>'.$term->name.'</h2></div>';
                   print'</a>';
                   print '<div class="category-thumb">' . wp_get_attachment_image( $term->image_id, 'medium' ) . '</div>';
                   print '<div class="cat-description">'.$term->description.'</div>';
                   print '</div>';
                   }
                   print '</div>';
   
               }
       ```
   
 * For more customization look into the README.md in the plugin folder.
 * Best regards
    -  This reply was modified 8 years, 5 months ago by [ilpert](https://wordpress.org/support/users/ilpert/).
    -  This reply was modified 8 years, 5 months ago by [ilpert](https://wordpress.org/support/users/ilpert/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images] unable to get taxonomy images for custom post taxonomy](https://wordpress.org/support/topic/unable-to-get-taxonomy-images-for-custom-post-taxonomy/)
 *  [ilpert](https://wordpress.org/support/users/ilpert/)
 * (@ilpert)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/unable-to-get-taxonomy-images-for-custom-post-taxonomy/#post-9747872)
 * Hello can you try the following example from the documentation of plugin.
 *     ```
       $terms = apply_filters( 'taxonomy-images-get-terms', '', array(
               'taxonomy'     => 'service',
               ) );
               if ( ! empty( $terms ) ) {
                   print '<div class="container" style="padding-top:50px;">';
                   foreach ( (array) $terms as $term ) {
   
                   print'<div class="listcategory" >';
                   print'<div class="category-content" ><a>taxonomy ) ) . '"><h2>'.$term->name.'</h2></div>';
                   print'</a>';
                   print '<div class="category-thumb">' . wp_get_attachment_image( $term->image_id, 'medium' ) . '</div>';
                   print '<div class="cat-description">'.$term->description.'</div>';
                   print '</div>';
                                    }
                   print '</div>';
   
               }
       ```
   
 * Best Regards
    -  This reply was modified 8 years, 5 months ago by [ilpert](https://wordpress.org/support/users/ilpert/).

Viewing 3 replies - 1 through 3 (of 3 total)