HI there, I've had a good look around and cant work out how to incorporate my taxonomy images provided by this plugin with my category list...
eg;
<?php
//list terms in a given taxonomy using wp_list_categories (also useful as a widget)
$orderby = 'name';
$show_count = 0; // 1 for yes, 0 for no
$pad_counts = 0; // 1 for yes, 0 for no
$hierarchical = 1; // 1 for yes, 0 for no
$taxonomy = 'product_categories';
$title = '';
$depth = 1;
$args = array(
'orderby' => $orderby,
'show_count' => $show_count,
'pad_counts' => $pad_counts,
'hierarchical' => $hierarchical,
'taxonomy' => $taxonomy,
'title_li' => $title,
'depth' => $depth
);
?>
<ul>
<?php
wp_list_categories($args);
?>
</ul>
It doesnt have to be a list, but I just want all my categories from the taxonomy 'product_categories' to displayed the category image & link through to the category.
Can you please advise how that is done based on the above?