Changeset 48214 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 06/29/2020 09:20:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r48197 r48214 1275 1275 * @param mixed $meta_value Metadata value. Must be serializable if non-scalar. 1276 1276 * @param mixed $prev_value Optional. Previous value to check before updating. 1277 * Default empty. 1277 * If specified, only update existing metadata entries with 1278 * this value. Otherwise, update all entries. Default empty. 1278 1279 * @return int|bool|WP_Error Meta ID if the key didn't exist. true on successful update, 1279 * false on failure. WP_Error when term_id is ambiguous 1280 * between taxonomies. 1280 * false on failure or if the value passed to the function 1281 * is the same as the one that is already in the database. 1282 * WP_Error when term_id is ambiguous between taxonomies. 1281 1283 */ 1282 1284 function update_term_meta( $term_id, $meta_key, $meta_value, $prev_value = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.