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: http://svn.automattic.com/wordpress/trunk@5356 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-04-30 17:43:11 +00:00
parent 6c0b1d6a5f
commit 8efa935340
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
}