﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
8341,The category list in the archives page of the default theme needs to fix,tai,,"The category list (wp_list_categories) of the archives page template (archives.php) outputs like below:

{{{
<h2>Archives by Subject:</h2>
<ul>
<li class=""categories"">Categories
<ul>
<li class=""cat-item cat-item-1""><a href=""http://xxx"">Cat 1</a></li>
<li class=""cat-item cat-item-2""><a href=""http://xxx"">Cat 2</a></li>
</ul>
</li>
</ul>
}}}


We don't need ""<li class=""categories"">Categories xx</li>"" here, so give wp_list_categories() the argument 'title_li=', then the html will be below:


{{{
<h2>Archives by Subject:</h2>
<ul>
<li class=""cat-item cat-item-1""><a href=""http://xxx"">Cat 1</a></li>
<li class=""cat-item cat-item-2""><a href=""http://xxx"">Cat 2</a></li>
</ul>
}}}
",defect (bug),closed,normal,,Themes,2.7,normal,wontfix,,westi
