diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 3d4c1aacf5..6c83001e9a 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1122,7 +1122,13 @@ function do_block_editor_incompatible_meta_box( $object, $box ) { echo '

'; } } elseif ( $object instanceof WP_Post ) { - $edit_url = add_query_arg( 'classic-editor', '', get_edit_post_link( $object ) ); + $edit_url = add_query_arg( + array( + 'classic-editor' => '', + 'classic-editor__forget' => '', + ), + get_edit_post_link( $object ) + ); echo '

'; /* translators: %s: A link to use the Classic Editor plugin. */ printf( __( 'Please open the classic editor to use this meta box.' ), esc_url( $edit_url ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index cd737318a3..80f4b7e61b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45617'; +$wp_version = '5.3-alpha-45618'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.