I am trying to figure out how to use wp_list_categories to include or exclude by category name instead of ID#
Currently:
<?php wp_list_categories('include=4,&title_li='); ?>
I know that this is possible with gettting categories like:
<?php the_category('category_name=NAME OF CAT'); ?>
So I am thinking it should work for list_categories.
Possible?