From 027710ef8e44bffabe37334f52b067baf49e6ba9 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 23 Sep 2019 19:09:54 +0000 Subject: [PATCH] Taxonomy: Redirect to the correct URL after deleting a taxonomy term attached to a post type other than Post. Props donmhico, mukesh27 Fixes #47858 git-svn-id: https://develop.svn.wordpress.org/trunk@46263 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/term.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/term.php b/src/wp-admin/term.php index ec8b359d5d..48932209e0 100644 --- a/src/wp-admin/term.php +++ b/src/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; }