to make my question clearer.
In my sidebar.php of a theme I use the below code to list category :
<?php wp_list_categories(‘show_count=1&title_li=’); ?>
the output is something like
. Category 1
. Category 2
What I want is to change the . or <LI> tag to >>
my search for solution lead me to the code below but all it does is to totally remove the style .
- tag.
<?php wp_list_categories(‘show_count=1&style=0&title_li=’); ?>
Again my question is how to change LI tag to >> before all the categories.