From 55a42e8afaffc42272da064a08b89c634f6338ef Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 13 Oct 2015 17:01:10 +0000 Subject: [PATCH] Taxonomy: in `wp_list_categories()`, add an arg: `separator`, to allow the overriding of `
`. Props wojtek.szkutnik. Fixes #9025. git-svn-id: https://develop.svn.wordpress.org/trunk@35140 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/category-template.php | 3 ++- src/wp-includes/class-walker-category.php | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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"; }