Filters whether the current taxonomy should be shown in the Quick Edit panel.
$show_in_quick_editbool$taxonomy_namestring$post_typestringwp-admin/includes/ajax-actions.php:2134wp_ajax_inline_save()wp-admin/includes/class-wp-posts-list-table.php:1639WP_Posts_List_Table::inline_edit() * @since 4.2.0 * * @param bool $show_in_quick_edit Whether to show the current taxonomy in Quick Edit. * @param string $taxonomy_name Taxonomy name. * @param string $post_type Post type of current Quick Edit post. */ if ( ! apply_filters( 'quick_edit_show_taxonomy', $show_in_quick_edit, $taxonomy_name, $screen->post_type ) ) { continue; } if ( $taxonomy->hierarchical ) { $hierarchical_taxonomies[] = $taxonomy; } else {Introduced in 4.2.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.