Docs: Add a missing file header for wp-includes/class-wp-comment-query.php, introduced in [33750].
Also clarifies the class DocBlock summary and tags for `WP_Comment_Query`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@33898 git-svn-id: http://core.svn.wordpress.org/trunk@33867 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cf6c74499
commit
a71ee9a0ea
|
@ -1,14 +1,21 @@
|
|||
<?php
|
||||
/**
|
||||
* WordPress Comment Query class.
|
||||
* Comments API: WP_Comment_Query class
|
||||
*
|
||||
* See WP_Comment_Query::__construct() for accepted arguments.
|
||||
*
|
||||
* @since 3.1.0
|
||||
* @package WordPress
|
||||
* @subpackage Comment
|
||||
* @since 4.4.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Core class used for querying comments.
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @see WP_Comment_Query::__construct() for accepted arguments.
|
||||
*/
|
||||
class WP_Comment_Query {
|
||||
|
||||
/**
|
||||
* SQL for database query.
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-33897';
|
||||
$wp_version = '4.4-alpha-33898';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue