wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



rest_validate_request_arg › WordPress Function

Seit4.7.0
Veraltetn/v
rest_validate_request_arg ( $value, $request, $param )
Parameter: (3)
  • (mixed) $value
    Erforderlich: Ja
  • (WP_REST_Request) $request
    Erforderlich: Ja
  • (string) $param
    Erforderlich: Ja
Gibt zurück:
  • (true|WP_Error)
Definiert in:
Codex:

Validate a request argument based on details registered to the route.



Quellcode

function rest_validate_request_arg( $value, $request, $param ) {
	$attributes = $request->get_attributes();
	if ( ! isset( $attributes['args'][ $param ] ) || ! is_array( $attributes['args'][ $param ] ) ) {
		return true;
	}
	$args = $attributes['args'][ $param ];

	return rest_validate_value_from_schema( $value, $args, $param );
}