I have a working archive page, but there is one thing that I'd like to change.
<h5>Archives by Subject:</h5>
<ul class="ulstylearchives">
<?php wp_list_categories('optioncount=1'); ?>
</ul>
This code outputs this:
Archives by Subject:
* Categories
Light Technology
Lighting Academy
Lighting Efficiency
News
Outdoor Lighting
Pro Tips
Video
It seems to be including a header "categories" followed by the 7 category names. How can I remove the header "categories"? Thanks in advance.