Docs: Clarify the file header summary for wp-includes/meta.php, the top-level file for the core Meta API.
Also adds inline DocBlocks for files broken out in #33413 and now brought in via `require_once()`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34407 git-svn-id: http://core.svn.wordpress.org/trunk@34371 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c0f2844618
commit
df81151f24
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Metadata API
|
||||
* Core Metadata API
|
||||
*
|
||||
* Functions for retrieving and manipulating metadata of various WordPress object types. Metadata
|
||||
* for an object is a represented by a simple key-value pair. Objects may contain multiple
|
||||
|
@ -11,5 +11,8 @@
|
|||
* @since 2.9.0
|
||||
*/
|
||||
|
||||
/** Core metdata functionality */
|
||||
require_once( ABSPATH . WPINC . '/meta-functions.php' );
|
||||
|
||||
/** WP_Meta_Query class */
|
||||
require_once( ABSPATH . WPINC . '/class-wp-meta-query.php' );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34406';
|
||||
$wp_version = '4.4-alpha-34407';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue