diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index f3300fcf1e..6621d8e090 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -597,8 +597,14 @@ function bulk_edit_posts( $post_data = null ) { $post = get_post( $post_ID ); $tax_names = get_object_taxonomies( $post ); + foreach ( $tax_names as $tax_name ) { $taxonomy_obj = get_taxonomy( $tax_name ); + + if ( ! $taxonomy_obj->show_in_quick_edit ) { + continue; + } + if ( isset( $tax_input[ $tax_name ] ) && current_user_can( $taxonomy_obj->cap->assign_terms ) ) { $new_terms = $tax_input[ $tax_name ]; } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index 1b1cc616cf..64cf35cd96 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53448'; +$wp_version = '6.1-alpha-53449'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.