Random Category Icons in Sidebar
-
Hello,
I was wondering if there was a way to show random category icons in the sidebar. I am using a PHP Widget Box to show the following random categories currently. Is there a way to add the category icons to this code?
<?php // display 10 random categories $cats =''; $categories=get_categories(); $rand_keys = array_rand($categories, 10); foreach ($rand_keys as $key) { $cats .= $categories[$key]->term_id .','; } wp_list_categories('title_li=&hierarchical=true&hide_empty=0&show_count=1&include='.$cats); ?>
Thanks,
Steve
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Random Category Icons in Sidebar’ is closed to new replies.