Editor: remove one preloaded navigation endpoint.

Removes one of the preloaded navigation endpoints from the site editor as it is not in use anymore.

Props scruffian.
Fixes #58749.

Built from https://develop.svn.wordpress.org/trunk@56206


git-svn-id: http://core.svn.wordpress.org/trunk@55718 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
isabel_brison 2023-07-11 07:17:23 +00:00
parent 9f33966e4e
commit 0153375f40
2 changed files with 1 additions and 16 deletions

View File

@ -100,7 +100,6 @@ $preload_paths = array(
'per_page' => 100,
'order' => 'desc',
'orderby' => 'date',
'_locale' => 'user',
// array indices are required to avoid query being encoded and not matching in cache.
'status[0]' => 'publish',
'status[1]' => 'draft',
@ -109,20 +108,6 @@ $preload_paths = array(
),
'GET',
),
$preload_paths[] = array(
add_query_arg(
array(
'context' => 'edit',
'per_page' => 100,
'order' => 'desc',
'orderby' => 'date',
'status[0]' => 'publish',
'status[1]' => 'draft',
),
$navigation_rest_route
),
'GET',
),
);
block_editor_rest_api_preload( $preload_paths, $block_editor_context );

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-beta3-56205';
$wp_version = '6.3-beta3-56206';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.