Ticket #21840: add filter for taxonomies in quick edit.patch
| File add filter for taxonomies in quick edit.patch, 676 bytes (added by helgatheviking, 9 months ago) |
|---|
-
class-wp-posts-list-table.php
709 709 $post = get_default_post_to_edit( $screen->post_type ); 710 710 $post_type_object = get_post_type_object( $screen->post_type ); 711 711 712 $taxonomy_names = get_object_taxonomies( $screen->post_type ); 712 $taxonomy_names = apply_filters( 'inline_edit_taxonomies', get_object_taxonomies( $screen->post_type ), $screen->post_type ); 713 713 714 $hierarchical_taxonomies = array(); 714 715 $flat_taxonomies = array(); 715 716 foreach ( $taxonomy_names as $taxonomy_name ) {
