From 4013156e515b2ca09fea7464957e0532c8ded396 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Wed, 29 Oct 2014 02:35:23 +0000 Subject: [PATCH] Be more specific in documentation of 'slug' param for `get_terms()`. Props jfarthing84. Fixes #23636. Built from https://develop.svn.wordpress.org/trunk@30086 git-svn-id: http://core.svn.wordpress.org/trunk@30086 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 7f037cb0e8..cbe3e1ee6c 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -1596,7 +1596,7 @@ function get_term_to_edit( $id, $taxonomy ) { * @type string $fields Term fields to query for. Accepts 'all' (returns an array of * term objects), 'ids' or 'names' (returns an array of integers * or strings, respectively. Default 'all'. - * @type string|array $slug Optional. Slug(s) to return term(s) for. Default empty. + * @type string|array $slug Optional. Slug or array of slugs to return term(s) for. Default empty. * @type bool $hierarchical Whether to include terms that have non-empty descendants (even * if $hide_empty is set to true). Default true. * @type string $search Search criteria to match terms. Will be SQL-formatted with diff --git a/wp-includes/version.php b/wp-includes/version.php index 1a57d817d1..8a98fa7805 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30085'; +$wp_version = '4.1-alpha-30086'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.