maybe you can help: Bellow there is a simple code listing my blogs categories. I need some code that will not display the *ul is there aren't any categories to display*
<ul>
<li><p>Categories:</p></li>
<? $master_cat = get_category_by_slug('Master');
$master_cat_id = $master_cat->term_id;
$slave_cat = get_category_by_slug('Slave');
$slave_cat_id = $slave_cat->term_id;
wp_list_categories('orderby=name&title_li=&exclude='.$master_cat_id.','.$slave_cat_id.''); ?>
</ul>
Ty very much