2009-09-17 22:17:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-09-22 15:30:24 +02:00
|
|
|
* Core Metadata API
|
2009-09-17 22:17:33 +02:00
|
|
|
*
|
2011-12-14 00:45:31 +01:00
|
|
|
* 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
|
2010-01-19 18:08:04 +01:00
|
|
|
* metadata entries that share the same key and differ only in their value.
|
2009-09-17 22:17:33 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Meta
|
|
|
|
* @since 2.9.0
|
|
|
|
*/
|
|
|
|
|
2015-09-22 15:30:24 +02:00
|
|
|
/** Core metdata functionality */
|
2015-08-26 15:02:21 +02:00
|
|
|
require_once( ABSPATH . WPINC . '/meta-functions.php' );
|
2015-09-22 15:30:24 +02:00
|
|
|
|
|
|
|
/** WP_Meta_Query class */
|
2015-08-26 15:02:21 +02:00
|
|
|
require_once( ABSPATH . WPINC . '/class-wp-meta-query.php' );
|