Changeset 53589
- Timestamp:
- 06/29/2022 02:15:57 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r53588 r53589 2237 2237 array( 2238 2238 'show_in_rest' => true, 2239 'type' => ' number',2239 'type' => 'integer', 2240 2240 'description' => __( 'The ID of the page that should be displayed on the front page' ), 2241 2241 ) … … 2247 2247 array( 2248 2248 'show_in_rest' => true, 2249 'type' => ' number',2249 'type' => 'integer', 2250 2250 'description' => __( 'The ID of the page that should display the latest posts' ), 2251 2251 ) -
trunk/tests/qunit/fixtures/wp-api-generated.js
r53588 r53589 9636 9636 "page_on_front": { 9637 9637 "description": "The ID of the page that should be displayed on the front page", 9638 "type": " number",9638 "type": "integer", 9639 9639 "required": false 9640 9640 }, 9641 9641 "page_for_posts": { 9642 9642 "description": "The ID of the page that should display the latest posts", 9643 "type": " number",9643 "type": "integer", 9644 9644 "required": false 9645 9645 },
Note: See TracChangeset
for help on using the changeset viewer.