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
This commit is contained in:
parent
f3a268f58c
commit
027710ef8e
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user