diff --git a/wp-admin/site-editor.php b/wp-admin/site-editor.php index 6951d05e55..7e2e763dee 100644 --- a/wp-admin/site-editor.php +++ b/wp-admin/site-editor.php @@ -88,7 +88,8 @@ $navigation_rest_route = rest_get_route_for_post_type_items( ); $preload_paths = array( - array( '/wp/v2/media', 'OPTIONS' ), + array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ), + array( rest_get_route_for_post_type_items( 'page' ), 'OPTIONS' ), '/wp/v2/types?context=view', '/wp/v2/types/wp_template?context=edit', '/wp/v2/types/wp_template_part?context=edit', diff --git a/wp-includes/version.php b/wp-includes/version.php index 0fb1852372..50f8507872 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58983'; +$wp_version = '6.7-alpha-58984'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.