I am using the fantastic category-icon plugin and the the following code to list my category-icons on a category page template.
<?php
$ftchildcats="69,71,77,75,67,116,72";
$ftgrandchildcats="65,66,68,70,74,76";
echo "<ul class='ft-category'>";
if (function_exists('put_cat_icons'))
put_cat_icons( wp_list_categories('title_li=&include=' . $ftchildcats . '&echo=0'));
else
wp_list_categories('title_li');
echo "";
?>
This is working very well for me, except the category titles are above the category-icons, and I have a need to move these title below the icons.
Without hacking the plugin files, does anyone have an opinion on what I might try?
p.s. The extra ul class is there because of the way I am displaying the results.
Any advice or thoughts are greatly appreciated.