mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
df81151f24
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
19 lines
546 B
PHP
19 lines
546 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
* metadata entries that share the same key and differ only in their value.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Meta
|
|
* @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' );
|