Changeset 53449
- Timestamp:
- 05/27/2022 03:49:24 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r53299 r53449 598 598 $post = get_post( $post_ID ); 599 599 $tax_names = get_object_taxonomies( $post ); 600 600 601 foreach ( $tax_names as $tax_name ) { 601 602 $taxonomy_obj = get_taxonomy( $tax_name ); 603 604 if ( ! $taxonomy_obj->show_in_quick_edit ) { 605 continue; 606 } 607 602 608 if ( isset( $tax_input[ $tax_name ] ) && current_user_can( $taxonomy_obj->cap->assign_terms ) ) { 603 609 $new_terms = $tax_input[ $tax_name ];
Note: See TracChangeset
for help on using the changeset viewer.