wp_xmlrpc_server::get_term_custom_fields()publicWP 4.9.0

Retrieves custom fields for a term.

Method of the class: wp_xmlrpc_server{}

No Hooks.

Return

Array. Array of custom fields, if they exist.

Usage

$wp_xmlrpc_server = new wp_xmlrpc_server();
$wp_xmlrpc_server->get_term_custom_fields( $term_id );
$term_id(int) (required)
Term ID.

Changelog

Since 4.9.0 Introduced.

wp_xmlrpc_server::get_term_custom_fields() code WP 6.4.3

public function get_term_custom_fields( $term_id ) {
	$term_id = (int) $term_id;

	$custom_fields = array();

	foreach ( (array) has_term_meta( $term_id ) as $meta ) {

		if ( ! current_user_can( 'edit_term_meta', $term_id ) ) {
			continue;
		}

		$custom_fields[] = array(
			'id'    => $meta['meta_id'],
			'key'   => $meta['meta_key'],
			'value' => $meta['meta_value'],
		);
	}

	return $custom_fields;
}