On this page
register_rest_field( string|array $object_type, string $attribute, array $args = array() )
Registers a new field on an existing WordPress object type.
Parameters
$object_typestring|array Required-
Object(s) the field is being registered to, "post"|"term"|"comment" etc.
$attributestring Required-
The attribute name.
$argsarray Optional-
An array of arguments used to handle the registered field.
get_callbackcallable|nullOptional. The callback function used to retrieve the field value. Default is'null', the field will not be returned in the response. The function will be passed the prepared object data.update_callbackcallable|nullOptional. The callback function used to set and update the field value. Default is'null', the value cannot be set or updated. The function will be passed the model object, like WP_Post.schemaarray|nullOptional. The schema for this field.
Default is'null', no schema entry will be returned.
Default:
array()
Source
File: wp-includes/rest-api.php. View all references
function register_rest_field( $object_type, $attribute, $args = array() ) {
global $wp_rest_additional_fields;
$defaults = array(
'get_callback' => null,
'update_callback' => null,
'schema' => null,
);
$args = wp_parse_args( $args, $defaults );
$object_types = (array) $object_type;
foreach ( $object_types as $object_type ) {
$wp_rest_additional_fields[ $object_type ][ $attribute ] = $args;
}
}
Related
Uses
| Uses | Description |
|---|---|
| wp_parse_args() wp-includes/functions.php | Merges user defined arguments into defaults array. |
Used By
| Used By | Description |
|---|---|
| WP_REST_Meta_Fields::register_field() wp-includes/rest-api/fields/class-wp-rest-meta-fields.php | Registers the meta field. |
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_rest_field