quick_edit_show_taxonomy WordPress Filter Hook

The quick_edit_show_taxonomy hook allows you to add custom taxonomies to the Quick Edit screen in the WordPress admin. This can be useful if you want to add quick editing capabilities for custom fields or taxonomies.

apply_filters( 'quick_edit_show_taxonomy', bool $show_in_quick_edit, string $taxonomy_name, string $post_type ) #

Filters whether the current taxonomy should be shown in the Quick Edit panel.


Parameters

$show_in_quick_edit

(bool)Whether to show the current taxonomy in Quick Edit.

$taxonomy_name

(string)Taxonomy name.

$post_type

(string)Post type of current Quick Edit post.


Top ↑

Source

File: wp-admin/includes/class-wp-posts-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.