diff --git a/src/wp-includes/category-template.php b/src/wp-includes/category-template.php
index e3729df..b23a476 100644
a
|
b
|
function wp_dropdown_categories( $args = '' ) { |
494 | 494 | * the list. Default false (title will always be shown). |
495 | 495 | * @type bool $hierarchical Whether to include terms that have non-empty descendants. |
496 | 496 | * See get_terms(). Default true. |
| 497 | * @type array|string $include Array or comma/space-separated string of term ids to include. |
| 498 | * See get_terms(). Default empty string. |
497 | 499 | * @type string $order Which direction to order categories. Accepts 'ASC' or 'DESC'. |
498 | 500 | * Default 'ASC'. |
499 | 501 | * @type string $orderby The column to use for ordering categories. Default 'name'. |
… |
… |
function wp_list_categories( $args = '' ) { |
527 | 529 | 'hide_empty' => 1, |
528 | 530 | 'hide_title_if_empty' => false, |
529 | 531 | 'hierarchical' => true, |
| 532 | 'include' => '', |
530 | 533 | 'order' => 'ASC', |
531 | 534 | 'orderby' => 'name', |
532 | 535 | 'separator' => '<br />', |