Changeset 25076 for trunk/src/wp-includes/meta.php
- Timestamp:
- 08/21/2013 09:10:23 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r24714 r25076 23 23 * @param int $object_id ID of the object metadata is for 24 24 * @param string $meta_key Metadata key 25 * @param string $meta_value Metadata value25 * @param mixed $meta_value Metadata value. Must be serializable if non-scalar. 26 26 * @param bool $unique Optional, default is false. Whether the specified metadata key should be 27 27 * unique for the object. If true, and the object already has a value for the specified … … 94 94 * @param int $object_id ID of the object metadata is for 95 95 * @param string $meta_key Metadata key 96 * @param string $meta_value Metadata value97 * @param string$prev_value Optional. If specified, only update existing metadata entries with96 * @param mixed $meta_value Metadata value. Must be serializable if non-scalar. 97 * @param mixed $prev_value Optional. If specified, only update existing metadata entries with 98 98 * the specified value. Otherwise, update all entries. 99 99 * @return bool True on successful update, false on failure. … … 175 175 * @param int $object_id ID of the object metadata is for 176 176 * @param string $meta_key Metadata key 177 * @param string $meta_value Optional. Metadata value. If specified, only delete metadata entries177 * @param mixed $meta_value Optional. Metadata value. Must be serializable if non-scalar. If specified, only delete metadata entries 178 178 * with this value. Otherwise, delete all entries with the specified meta_key. 179 179 * @param bool $delete_all Optional, default is false. If true, delete matching metadata entries … … 721 721 unset( $this->queries[$k] ); 722 722 } 723 } 724 723 } 724 725 725 // Split out the meta_key only queries (we can only do this for OR) 726 726 if ( 'OR' == $this->relation ) {
Note: See TracChangeset
for help on using the changeset viewer.