- Timestamp:
- 07/22/2022 01:58:46 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-controller.php
r51657 r53760 582 582 $fields = array_keys( $properties ); 583 583 584 /* 585 * '_links' and '_embedded' are not typically part of the item schema, 586 * but they can be specified in '_fields', so they are added here as a 587 * convenience for checking with rest_is_field_included(). 588 */ 589 $fields[] = '_links'; 590 if ( $request->has_param( '_embed' ) ) { 591 $fields[] = '_embedded'; 592 } 593 594 $fields = array_unique( $fields ); 595 584 596 if ( ! isset( $request['_fields'] ) ) { 585 597 return $fields;
Note: See TracChangeset
for help on using the changeset viewer.