Filters whether the current taxonomy should be shown in the Quick Edit panel.
$show_in_quick_edit, $taxonomy_name, $screen->post_type
Sortie :
@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.
// Modifier la valeur avec le filtre 'quick_edit_show_taxonomy'
add_filter('quick_edit_show_taxonomy', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($show_in_quick_edit) {
// Modifier la valeur
return $show_in_quick_edit;
}
Chargement des actualités...