Docs: Fix an incorrect pseudo-parameter referenced in the hook doc for the widget_tag_cloud_args filter.

Props backermann.
Fixes #37654.

Built from https://develop.svn.wordpress.org/trunk@39053


git-svn-id: http://core.svn.wordpress.org/trunk@38995 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-10-31 06:40:49 +00:00
parent 568838bebd
commit 3a02481d9e
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.7-beta1-39052'; $wp_version = '4.7-beta1-39053';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -61,7 +61,7 @@ class WP_Widget_Tag_Cloud extends WP_Widget {
* *
* @see wp_tag_cloud() * @see wp_tag_cloud()
* *
* @param array $current_taxonomy The taxonomy to use in the tag cloud. Default 'tags'. * @param array $args Args used for the tag cloud widget.
*/ */
$tag_cloud = wp_tag_cloud( apply_filters( 'widget_tag_cloud_args', array( $tag_cloud = wp_tag_cloud( apply_filters( 'widget_tag_cloud_args', array(
'taxonomy' => $current_taxonomy, 'taxonomy' => $current_taxonomy,