diff --git a/wp-admin/term.php b/wp-admin/term.php index ec8b359d5d..48932209e0 100644 --- a/wp-admin/term.php +++ b/wp-admin/term.php @@ -15,7 +15,12 @@ if ( empty( $_REQUEST['tag_ID'] ) ) { if ( ! empty( $taxnow ) ) { $sendback = add_query_arg( array( 'taxonomy' => $taxnow ), $sendback ); } - wp_redirect( esc_url( $sendback ) ); + + if ( 'post' !== get_current_screen()->post_type ) { + $sendback = add_query_arg( 'post_type', get_current_screen()->post_type, $sendback ); + } + + wp_redirect( esc_url_raw( $sendback ) ); exit; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 623da0d8dd..2538497ba4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46262'; +$wp_version = '5.3-alpha-46263'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.