Warning: This method has been deprecated. Use register_rest_field() instead.

WP_REST_Meta_Fields::register_field()

Registers the meta field.


Description

Top ↑

See also


Top ↑

Source

File: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php. View all references

public function register_field() {
	_deprecated_function( __METHOD__, '5.6.0' );

	register_rest_field(
		$this->get_rest_field_type(),
		'meta',
		array(
			'get_callback'    => array( $this, 'get_value' ),
			'update_callback' => array( $this, 'update_value' ),
			'schema'          => $this->get_field_schema(),
		)
	);
}


Top ↑

Changelog

Changelog
Version Description
5.6.0 This method has been deprecated. Use register_rest_field() instead.
4.7.0 Introduced.

Top ↑

User Contributed Notes

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