Update the changelog for WP_Comment_Query::query() to reflect two more new arguments added in [30096].

[30096] introduced the `type__in` and `type__not_in` arguments. See #30111 for documentation on those new arguments.

Fixes #12668.

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


git-svn-id: http://core.svn.wordpress.org/trunk@30110 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-10-30 03:06:24 +00:00
parent 54020268f7
commit 8fcc2b3dc8
2 changed files with 4 additions and 3 deletions

View File

@ -276,8 +276,9 @@ class WP_Comment_Query {
*
* @since 3.1.0
* @since 4.1.0 Introduced 'comment__in', 'comment__not_in', 'post_author__in',
* 'post_author__not_in', 'author__in', 'author__not_in',
* 'post__in', 'post__not_in', and 'include_unapproved' to $query_vars.
* 'post_author__not_in', 'author__in', 'author__not_in', 'post__in',
* 'post__not_in', 'include_unapproved', 'type__in', and 'type__not_in'
* to $query_vars.
*
* @param string|array $query_vars
* @return int|array

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30109';
$wp_version = '4.1-alpha-30110';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.