diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
index e5a9541..833dd1d 100644
|
a
|
b
|
class WP_REST_Comments_Controller extends WP_REST_Controller {
|
| 990 | 990 | 'description' => __( 'The content for the object.' ), |
| 991 | 991 | 'type' => 'object', |
| 992 | 992 | 'context' => array( 'view', 'edit', 'embed' ), |
| | 993 | 'arg_options' => array( |
| | 994 | 'sanitize_callback' => null, // Note: sanitization implemented in callback |
| | 995 | ), |
| 993 | 996 | 'properties' => array( |
| 994 | 997 | 'raw' => array( |
| 995 | 998 | 'description' => __( 'Content for the object, as it exists in the database.' ), |
diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
index 53692d8..abdebc8 100644
|
a
|
b
|
class WP_REST_Posts_Controller extends WP_REST_Controller {
|
| 1619 | 1619 | 'description' => __( 'The title for the object.' ), |
| 1620 | 1620 | 'type' => 'object', |
| 1621 | 1621 | 'context' => array( 'view', 'edit', 'embed' ), |
| | 1622 | 'arg_options' => array( |
| | 1623 | 'sanitize_callback' => null, // Note: sanitization implemented in callback |
| | 1624 | ), |
| 1622 | 1625 | 'properties' => array( |
| 1623 | 1626 | 'raw' => array( |
| 1624 | 1627 | 'description' => __( 'Title for the object, as it exists in the database.' ), |
| … |
… |
class WP_REST_Posts_Controller extends WP_REST_Controller {
|
| 1640 | 1643 | 'description' => __( 'The content for the object.' ), |
| 1641 | 1644 | 'type' => 'object', |
| 1642 | 1645 | 'context' => array( 'view', 'edit' ), |
| | 1646 | 'arg_options' => array( |
| | 1647 | 'sanitize_callback' => null, // Note: sanitization implemented in callback |
| | 1648 | ), |
| 1643 | 1649 | 'properties' => array( |
| 1644 | 1650 | 'raw' => array( |
| 1645 | 1651 | 'description' => __( 'Content for the object, as it exists in the database.' ), |
| … |
… |
class WP_REST_Posts_Controller extends WP_REST_Controller {
|
| 1675 | 1681 | 'description' => __( 'The excerpt for the object.' ), |
| 1676 | 1682 | 'type' => 'object', |
| 1677 | 1683 | 'context' => array( 'view', 'edit', 'embed' ), |
| | 1684 | 'arg_options' => array( |
| | 1685 | 'sanitize_callback' => null, // Note: sanitization implemented in callback |
| | 1686 | ), |
| 1678 | 1687 | 'properties' => array( |
| 1679 | 1688 | 'raw' => array( |
| 1680 | 1689 | 'description' => __( 'Excerpt for the object, as it exists in the database.' ), |