Title: Non-coder needs guidance
Last modified: August 31, 2016

---

# Non-coder needs guidance

 *  Resolved [Sheila](https://wordpress.org/support/users/sheilahoff/)
 * (@sheilahoff)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/non-coder-needs-guidance/)
 * I was excited to find this plugin and how easy it was to add images to categories.
   But then I got lost in the need to code. I’m hoping someone can tell me which
   code I need to put WHERE so I can get this to work.
 * Site is build in ET Divi. I’m wanting to make the images show up instead of the
   text on the top of the Filtered Portfolio page here:
    [http://metroagstrategies.com/portfolio/](http://metroagstrategies.com/portfolio/)
 * Any instructions would be very much appreciated.
    Thanks.
 * [https://wordpress.org/plugins/categories-images/](https://wordpress.org/plugins/categories-images/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Zahlan](https://wordpress.org/support/users/elzahlan/)
 * (@elzahlan)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/non-coder-needs-guidance/#post-7116404)
 * Sorry for replying late, try the following code:
 *     ```
       <ul>
        <?php foreach (get_categories() as $cat) : ?>
        <li>
        <img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
        <a href="<?php echo get_category_link($cat->term_id); ?>"><?php echo $cat->cat_name; ?></a>
        </li>
        <?php endforeach; ?>
       </ul>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Non-coder needs guidance’ is closed to new replies.

 * ![](https://ps.w.org/categories-images/assets/icon-128x128.png?rev=2256871)
 * [Categories Images](https://wordpress.org/plugins/categories-images/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/categories-images/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/categories-images/)
 * [Active Topics](https://wordpress.org/support/plugin/categories-images/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/categories-images/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/categories-images/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Zahlan](https://wordpress.org/support/users/elzahlan/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/non-coder-needs-guidance/#post-7116404)
 * Status: resolved