From 718787cd181540adccbed9bda56ab8c7ae9657a3 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Thu, 27 Aug 2015 02:08:31 +0000 Subject: [PATCH] Rename param added to `wp_list_categories()` in [33764] to 'hide_title_if_empty'. Props vilkatis, DrewAPicture. Fixes #33565. git-svn-id: https://develop.svn.wordpress.org/trunk@33767 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/category-template.php | 8 ++++---- tests/phpunit/tests/category/wpListCategories.php | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/wp-includes/category-template.php b/src/wp-includes/category-template.php index 7fa5926eb7..797d07a20f 100644 --- a/src/wp-includes/category-template.php +++ b/src/wp-includes/category-template.php @@ -461,7 +461,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_no_cats` argument. + * @since 4.4.0 Introduced the `hide_title_if_empty` argument. * * @param string|array $args { * Array of optional arguments. @@ -493,7 +493,7 @@ function wp_dropdown_categories( $args = '' ) { * See {@link get_terms()}. Default true. * @type string $title_li Text to use for the list title `
  • ` element. Pass an empty string * to disable. Default 'Categories'. - * @type bool $hide_title_if_no_cats Whether to hide the `$title_li` element if there are no terms in + * @type bool $hide_title_if_empty Whether to hide the `$title_li` element if there are no terms in * the list. Default false (title will always be shown). * @type int $depth Category depth. Used for tab indentation. Default 0. * @type string $taxonomy Taxonomy name. Default 'category'. @@ -511,7 +511,7 @@ function wp_list_categories( $args = '' ) { 'feed_image' => '', 'exclude' => '', 'exclude_tree' => '', 'current_category' => 0, 'hierarchical' => true, 'title_li' => __( 'Categories' ), - 'hide_title_if_no_cats' => false, + 'hide_title_if_empty' => false, 'echo' => 1, 'depth' => 0, 'taxonomy' => 'category' ); @@ -539,7 +539,7 @@ function wp_list_categories( $args = '' ) { $categories = get_categories( $r ); $output = ''; - if ( $r['title_li'] && 'list' == $r['style'] && ( ! empty( $categories ) || ! $r['hide_title_if_no_cats'] ) ) { + if ( $r['title_li'] && 'list' == $r['style'] && ( ! empty( $categories ) || ! $r['hide_title_if_empty'] ) ) { $output = '
  • ' . $r['title_li'] . '