diff --git a/src/wp-includes/category-template.php b/src/wp-includes/category-template.php index 9e81ef2474..471def6c17 100644 --- a/src/wp-includes/category-template.php +++ b/src/wp-includes/category-template.php @@ -474,7 +474,7 @@ function wp_dropdown_categories( $args = '' ) { * Display or retrieve the HTML list of categories. * * @since 2.1.0 - * @since 4.4.0 Introduced the `hide_title_if_empty` argument. The `current_category` argument was modified to + * @since 4.4.0 Introduced the `hide_title_if_empty` and `separator` arguments. The `current_category` argument was modified to * optionally accept an array of values. * * @param string|array $args { @@ -530,6 +530,7 @@ function wp_list_categories( $args = '' ) { 'hierarchical' => true, 'title_li' => __( 'Categories' ), 'hide_title_if_empty' => false, 'echo' => 1, 'depth' => 0, + 'separator' => '
', 'taxonomy' => 'category' ); diff --git a/src/wp-includes/class-walker-category.php b/src/wp-includes/class-walker-category.php index 3bd12054cf..da518c9ee1 100644 --- a/src/wp-includes/class-walker-category.php +++ b/src/wp-includes/class-walker-category.php @@ -189,6 +189,8 @@ class Walker_Category extends Walker { $output .= ' class="' . $css_classes . '"'; $output .= ">$link\n"; + } elseif ( isset( $args['separator'] ) ) { + $output .= "\t$link" . $args['separator'] . "\n"; } else { $output .= "\t$link
\n"; }