diff --git a/src/wp-includes/category-template.php b/src/wp-includes/category-template.php
index 38c52a79a9..d0a8facd6b 100644
|
a
|
b
|
function wp_dropdown_categories( $args = '' ) {
|
| 517 | 517 | * @type string $title_li Text to use for the list title `<li>` element. Pass an empty string |
| 518 | 518 | * to disable. Default 'Categories'. |
| 519 | 519 | * @type bool|int $use_desc_for_title Whether to use the category description as the title attribute. |
| 520 | | * Accepts 0, 1, or their bool equivalents. Default 1. |
| | 520 | * Accepts 0, 1, or their bool equivalents. Default 0. |
| 521 | 521 | * } |
| 522 | 522 | * @return void|string|false Void if 'echo' argument is true, HTML list of categories if 'echo' is false. |
| 523 | 523 | * False if the taxonomy does not exist. |
| … |
… |
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 ); |