diff --git a/wp-admin/term.php b/wp-admin/term.php
index ec8b359d5d..dbdddcbc64 100644
--- a/wp-admin/term.php
+++ b/wp-admin/term.php
@@ -15,7 +15,18 @@ if ( empty( $_REQUEST['tag_ID'] ) ) {
 	if ( ! empty( $taxnow ) ) {
 		$sendback = add_query_arg( array( 'taxonomy' => $taxnow ), $sendback );
 	}
-	wp_redirect( esc_url( $sendback ) );
+
+	/**
+	 * Added "post_type" in redirect url if not null.
+	 * 
+	 * @since 5.3.0
+	 */
+
+	if ( ! empty( $typenow ) ) {
+		$sendback = add_query_arg( array( 'post_type' => $typenow ), $sendback );
+	}
+
+	wp_redirect( $sendback );
 	exit;
 }
 
