mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
b6c01b80fa
Creates: `class-wp-meta-query.php` `meta-functions.php` `meta.php` contains only top-level code. Class file only contains the class. Functions file only contains functions. See #33413. Built from https://develop.svn.wordpress.org/trunk@33761 git-svn-id: http://core.svn.wordpress.org/trunk@33729 1a063a9b-81f0-0310-95a4-ce76da25c4cd
16 lines
479 B
PHP
16 lines
479 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
require_once( ABSPATH . WPINC . '/meta-functions.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-meta-query.php' );
|