wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
rest_find_matching_pattern_property_schema › WordPress Function
Seit5.6.0
Veraltetn/v
› rest_find_matching_pattern_property_schema ( $property, $args )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Finds the schema for a property using the patternProperties keyword.
Quellcode
function rest_find_matching_pattern_property_schema( $property, $args ) { if ( isset( $args['patternProperties'] ) ) { foreach ( $args['patternProperties'] as $pattern => $child_schema ) { if ( rest_validate_json_schema_pattern( $pattern, $property ) ) { return $child_schema; } } } return null; }