Correct the name of the `@param` doc for `WP_Query::parse_tax_query()`.
See #32246 Built from https://develop.svn.wordpress.org/trunk@35908 git-svn-id: http://core.svn.wordpress.org/trunk@35872 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6bb33fb2f4
commit
b2e373d64d
|
@ -1882,7 +1882,7 @@ class WP_Query {
|
||||||
* @access protected
|
* @access protected
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*
|
*
|
||||||
* @param array &$q The query variables
|
* @param array $q The query variables. Passed by reference.
|
||||||
*/
|
*/
|
||||||
public function parse_tax_query( &$q ) {
|
public function parse_tax_query( &$q ) {
|
||||||
if ( ! empty( $q['tax_query'] ) && is_array( $q['tax_query'] ) ) {
|
if ( ! empty( $q['tax_query'] ) && is_array( $q['tax_query'] ) ) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-alpha-35907';
|
$wp_version = '4.5-alpha-35908';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue