wp_xmlrpc_server::set_term_custom_fields() WordPress Method
The wp_xmlrpc_server::set_term_custom_fields() method is used to set the custom fields for a given term. This is useful for setting up custom taxonomies, as it allows you to add custom fields to terms in that taxonomy.
wp_xmlrpc_server::set_term_custom_fields( int $term_id, array $fields ) #
Set custom fields for a term.
Parameters
- $term_id
(int)(Required)Term ID.
- $fields
(array)(Required)Custom fields.
Source
File: wp-includes/class-wp-xmlrpc-server.php
public function set_term_custom_fields( $term_id, $fields ) { $term_id = (int) $term_id; foreach ( (array) $fields as $meta ) { if ( isset( $meta['id'] ) ) { $meta['id'] = (int) $meta['id']; $pmeta = get_metadata_by_mid( 'term', $meta['id'] ); if ( isset( $meta['key'] ) ) { $meta['key'] = wp_unslash( $meta['key'] ); if ( $meta['key'] !== $pmeta->meta_key ) { continue; } $meta['value'] = wp_unslash( $meta['value'] ); if ( current_user_can( 'edit_term_meta', $term_id ) ) { update_metadata_by_mid( 'term', $meta['id'], $meta['value'] ); } } elseif ( current_user_can( 'delete_term_meta', $term_id ) ) { delete_metadata_by_mid( 'term', $meta['id'] ); } } elseif ( current_user_can( 'add_term_meta', $term_id ) ) { add_term_meta( $term_id, $meta['key'], $meta['value'] ); } } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.9.0 | Introduced. |