Le problème
Il est bien possible d’ajouter des champ à l’édition rapide dans WordPress, mais avec quelques limitations.
Je voulais faire apparaître le champ description d’une custom taxonomie dans la zone d’édition rapide, après quelques recherches, je m’aperçois que la description (champ créé par défaut lors de la création de la taxonomie) ne peut pas être ajoutée simplement, alors que n’importe quel champ personnalisé peut l’être. Il faut ruser, et utiliser un champ invisible qui stocke la valeur.
Le code n’est pas de moi, je l’ai juste adapté à mes besoins.
PHP
<?php
/* https://wordpress.stackexchange.com/questions/139663/add-description-to-taxonomy-quick-edit */
/*
* This is NOT required, but I'm using it to easily let you customize the taxonomy
* where to add the inline description.
* You can replace $the_target_tax in all the code with the name of your taxonomy,
* with no need to use the global variable.
*/
/* Create an invisible _description field */
global $the_target_tax;
$the_target_tax = 'ressource-category';
add_filter( "manage_edit-{$the_target_tax}_columns", function( $columns ) {
$columns['_description'] = '';
return $columns;
});
add_filter( "manage_{$the_target_tax}_custom_column", function( $e, $column, $term_id ) {
if ( $column === '_description' ) return '';
}, 10, 3 );
add_filter( "get_user_option_manageedit-{$the_target_tax}columnshidden", function( $r ) {
$r[] = '_description';
return $r;
});
/* Custom Box + Prefill */
add_action( 'quick_edit_custom_box', function( $column, $screen, $tax ) {
if ( $screen !== 'edit-tags' ) return;
$taxonomy = get_taxonomy( $tax );
if ( ! current_user_can( $taxonomy->cap->edit_terms ) ) return;
global $the_target_tax;
if ( $tax !== $the_target_tax || $column !== '_description' ) return;
?>
<fieldset>
<div class="inline-edit-col">
<label>
<span class="title"><?php _e('Description'); ?></span>
<span class="input-text-wrap">
<textarea id="inline-desc" name="description" rows="3" class="ptitle"></textarea>
</span>
</label>
</div>
</fieldset>
<script>
jQuery(document).ready(function($) {
var $wp_inline_edit = inlineEditTax.edit;
inlineEditTax.edit = function(id) {
$wp_inline_edit.apply(this, arguments);
var tag_id = 0;
if (typeof(id) === 'object') {
tag_id = parseInt(this.getId(id));
}
if (tag_id > 0) {
var description = $('#tag-' + tag_id).find('.column-description').text().trim();
$('textarea#inline-desc').val(description);
}
};
});
</script>
<?php
}, 10, 3 );
/* Save to DB */
function save_inline_description( $term_id ) {
global $the_target_tax;
$tax = get_taxonomy( $the_target_tax );
if (
current_filter() === "edited_{$the_target_tax}"
&& current_user_can( $tax->cap->edit_terms )
) {
$description = filter_input( INPUT_POST, 'description');
// removing action to avoid recursion
remove_action( current_filter(), __FUNCTION__ );
wp_update_term( $term_id, $the_target_tax, array( 'description' => $description ) );
}
}
add_action( "edited_{$the_target_tax}", 'save_inline_description' );
?>
Et voilà… le champ description est maintenant quick-editable !