diff --git a/src/wp-includes/category-template.php b/src/wp-includes/category-template.php
index 38c52a79a9..553c2fc7b8 100644
a
|
b
|
function wp_list_categories( $args = '' ) { |
545 | 545 | 'style' => 'list', |
546 | 546 | 'taxonomy' => 'category', |
547 | 547 | 'title_li' => __( 'Categories' ), |
548 | | 'use_desc_for_title' => 1, |
| 548 | 'use_desc_for_title' => 0, |
549 | 549 | ); |
550 | 550 | |
551 | 551 | $parsed_args = wp_parse_args( $args, $defaults ); |
diff --git a/src/wp-includes/class-walker-category.php b/src/wp-includes/class-walker-category.php
index fcf54a333f..8f792361e0 100644
a
|
b
|
class Walker_Category extends Walker { |
123 | 123 | * @param WP_Term $category Category object. |
124 | 124 | */ |
125 | 125 | $atts['title'] = strip_tags( apply_filters( 'category_description', $category->description, $category ) ); |
| 126 | } else { |
| 127 | $atts['title'] = strip_tags( $category->name ); |
126 | 128 | } |
127 | 129 | |
128 | 130 | /** |