When using the traditional list view of the categories,

make sure the wp_list_categories() doesn't add in another title. This
was causing a second Categories to show up on the category widget.  Props Jospeh Scott

git-svn-id: https://develop.svn.wordpress.org/trunk@5356 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-04-30 17:43:11 +00:00
parent 176a6414e9
commit 3c6b689f0e
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ function wp_widget_categories($args) {
} else {
?>
<ul>
<?php wp_list_categories($cat_args); ?>
<?php wp_list_categories($cat_args . '&title_li='); ?>
</ul>
<?php
}