wp_xmlrpc_server::set_term_custom_fields( int $term_id, array $fields )

In this article

Sets custom fields for a term.

Parameters

$term_idintrequired
Term ID.
$fieldsarrayrequired
Custom fields.

Source

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'] );
		}
	}
}

Changelog

VersionDescription
4.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.