Changeset 49610 for trunk/src/wp-includes/rest-api.php
- Timestamp:
- 11/16/2020 11:02:32 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api.php
r49536 r49610 131 131 * is 'null', the value cannot be set or updated. The function will be passed 132 132 * the model object, like WP_Post. 133 * @type array|null $schema Optional. The callback function used to create theschema for this field.133 * @type array|null $schema Optional. The schema for this field. 134 134 * Default is 'null', no schema entry will be returned. 135 135 * } … … 154 154 155 155 /** 156 * Registers rewrite rules for the API.156 * Registers rewrite rules for the REST API. 157 157 * 158 158 * @since 4.4.0 … … 499 499 * Filters the REST Server Class. 500 500 * 501 * This filter allows you to adjust the server class used by the API, using a501 * This filter allows you to adjust the server class used by the REST API, using a 502 502 * different class to handle requests. 503 503 * … … 510 510 511 511 /** 512 * Fires when preparing to serve a nAPI request.512 * Fires when preparing to serve a REST API request. 513 513 * 514 514 * Endpoint objects should be created and register their hooks on this action rather … … 803 803 804 804 /** 805 * Filters the API response to include only a white-listed set of response object fields.805 * Filters the REST API response to include only a white-listed set of response object fields. 806 806 * 807 807 * @since 4.8.0
Note: See TracChangeset
for help on using the changeset viewer.