Fix 'quick_edit_show_taxonomy' filter so that can properly be used for overrides in all cases.
See #26948. Built from https://develop.svn.wordpress.org/trunk@31308 git-svn-id: http://core.svn.wordpress.org/trunk@31289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
abce542e5f
commit
e4f8d5e0bc
|
@ -945,23 +945,20 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
$flat_taxonomies = array();
|
$flat_taxonomies = array();
|
||||||
foreach ( $taxonomy_names as $taxonomy_name ) {
|
foreach ( $taxonomy_names as $taxonomy_name ) {
|
||||||
|
|
||||||
|
$taxonomy = get_taxonomy( $taxonomy_name );
|
||||||
|
|
||||||
|
$show_in_quick_edit = $taxonomy->show_in_quick_edit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters whether the current taxonomy should be shown in the Quick Edit panel.
|
* Filters whether the current taxonomy should be shown in the Quick Edit panel.
|
||||||
*
|
*
|
||||||
* @since 4.2.0
|
* @since 4.2.0
|
||||||
*
|
*
|
||||||
* @param bool $show Whether to show the current taxonomy in Quick Edit.
|
* @param bool $show_in_quick_edit Whether to show the current taxonomy in Quick Edit.
|
||||||
* Default: true.
|
* @param string $taxonomy_name Taxonomy name.
|
||||||
* @param string $taxonomy_name Taxonomy name.
|
* @param string $post_type Post type of current Quick Edit post.
|
||||||
* @param string $post_type Post type of current Quick Edit post.
|
|
||||||
*/
|
*/
|
||||||
if ( ! apply_filters( 'quick_edit_show_taxonomy', true, $taxonomy_name, $screen->post_type ) ) {
|
if ( ! apply_filters( 'quick_edit_show_taxonomy', $show_in_quick_edit, $taxonomy_name, $screen->post_type ) ) {
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$taxonomy = get_taxonomy( $taxonomy_name );
|
|
||||||
|
|
||||||
if ( ! $taxonomy->show_in_quick_edit ) {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31307';
|
$wp_version = '4.2-alpha-31308';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue