eklenti bilemem ama şöyle yapılabilir.

- functions.php için :
add_shortcode('listcats', 'single_list_cats');functionsingle_list_cats(){$cats = get_the_category();$list = '<ul class="single-cat-list">';foreach ($cats as $cat) :$list.='<li><a href="'.get_category_link($cat->cat_ID) .'">'.$cat->cat_name.'</a></li>';endforeach;$list.="</ul>";echo$list;}


- yazı oluştururken şu kısa kodu istediğin yere girebilirsin
[listcats]
woocommerce için değll normal blog yazıları içindir.