mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-09 18:08:09 +01:00
Docs: Add a file header to wp-includes/class-wp-meta-query.php, introduced in [33761].
Also clarifies the class DocBlock summary for `WP_Meta_Query`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34405 git-svn-id: http://core.svn.wordpress.org/trunk@34369 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
24180ac754
commit
0d1dcaa832
@ -1,6 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Class for generating SQL clauses that filter a primary query according to metadata keys and values.
|
* Meta API: WP_Meta_Query class
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage Meta
|
||||||
|
* @since 4.4.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Core class used to implement meta queries for the Meta API.
|
||||||
|
*
|
||||||
|
* Used for generating SQL clauses that filter a primary query according to metadata keys and values.
|
||||||
*
|
*
|
||||||
* `WP_Meta_Query` is a helper that allows primary query classes, such as {@see WP_Query} and {@see WP_User_Query},
|
* `WP_Meta_Query` is a helper that allows primary query classes, such as {@see WP_Query} and {@see WP_User_Query},
|
||||||
* to filter their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached
|
* to filter their results by object metadata, by generating `JOIN` and `WHERE` subclauses to be attached
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34404';
|
$wp_version = '4.4-alpha-34405';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user