From 6c34bf08a140375d7a97fe78a0b4b7023c9b5a15 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 25 May 2016 19:35:37 +0000 Subject: [PATCH] Docs: Add missing documentation for the `style` argument in the DocBlock for `wp_list_categories()`. Props birgire for the initial patch. See #36693. Built from https://develop.svn.wordpress.org/trunk@37569 git-svn-id: http://core.svn.wordpress.org/trunk@37537 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 3 +++ wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index e09551736a..18c041fed7 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -534,6 +534,9 @@ function wp_dropdown_categories( $args = '' ) { * 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'. + * @type string $style The style used to display the categories list. If 'list', categories + * will be output as an unordered list. If left empty or another value, + * categories will be output separated by `
` tags. Default 'list'. * @type string $separator Separator between links. Default '
'. * } * @return false|string HTML content only if 'echo' argument is 0. diff --git a/wp-includes/version.php b/wp-includes/version.php index 6e76387e4d..f358285379 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37568'; +$wp_version = '4.6-alpha-37569'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.