wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			register_rest_field › WordPress Function
Seit4.7.0
Veraltetn/v
› register_rest_field ( $object_type, $attribute, $args = array() )
| Parameter: (3) | 
 | 
| Definiert in: | 
 | 
| Codex: | 
Registers a new field on an existing WordPress object type.
Ähnliche Funktionen: register_rest_route, register_block_core_file, register_post_meta, register_post_type, register_meta
	Quellcode
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;
	}
}