diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index ce22688..d4fb106 100644
a
|
b
|
function do_block_editor_incompatible_meta_box( $object, $box ) { |
1124 | 1124 | echo '</p>'; |
1125 | 1125 | } |
1126 | 1126 | } elseif ( $object instanceof WP_Post ) { |
1127 | | $edit_url = add_query_arg( 'classic-editor', '', get_edit_post_link( $object ) ); |
| 1127 | $edit_url = add_query_arg( array( 'classic-editor'=>'', 'classic-editor__forget'=>'' ), get_edit_post_link( $object ) ); |
1128 | 1128 | echo '<p>'; |
1129 | 1129 | /* translators: %s: A link to use the Classic Editor plugin. */ |
1130 | 1130 | printf( __( 'Please open the <a href="%s">classic editor</a> to use this meta box.' ), esc_url( $edit_url ) ); |