mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 17:48:01 +01:00
Fix adding categories via bulk edit. Props duck_. see #13397
git-svn-id: http://svn.automattic.com/wordpress/trunk@14723 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4315c69c17
commit
53bff5059f
@ -311,11 +311,6 @@ function bulk_edit_posts( $post_data = null ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$tax_names = get_object_taxonomies( get_post($post_ID) );
|
$tax_names = get_object_taxonomies( get_post($post_ID) );
|
||||||
if ( isset($new_cats) && in_array( 'category', $tax_names ) ) {
|
|
||||||
$cats = (array) wp_get_post_categories($post_ID);
|
|
||||||
$post_data['post_category'] = array_unique( array_merge($cats, $new_cats) );
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ( $tax_names as $tax_name ) {
|
foreach ( $tax_names as $tax_name ) {
|
||||||
$taxonomy_obj = get_taxonomy($tax_name);
|
$taxonomy_obj = get_taxonomy($tax_name);
|
||||||
if ( isset( $tax_input[$tax_name]) && current_user_can( $taxonomy_obj->cap->assign_terms ) )
|
if ( isset( $tax_input[$tax_name]) && current_user_can( $taxonomy_obj->cap->assign_terms ) )
|
||||||
@ -331,6 +326,12 @@ function bulk_edit_posts( $post_data = null ) {
|
|||||||
$post_data['tax_input'][$tax_name] = array_merge( $current_terms, $new_terms );
|
$post_data['tax_input'][$tax_name] = array_merge( $current_terms, $new_terms );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( isset($new_cats) && in_array( 'category', $tax_names ) ) {
|
||||||
|
$cats = (array) wp_get_post_categories($post_ID);
|
||||||
|
$post_data['post_category'] = array_unique( array_merge($cats, $new_cats) );
|
||||||
|
unset( $post_data['tax_input']['category'] );
|
||||||
|
}
|
||||||
|
|
||||||
$post_data['ID'] = $post_ID;
|
$post_data['ID'] = $post_ID;
|
||||||
$updated[] = wp_update_post( $post_data );
|
$updated[] = wp_update_post( $post_data );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user