manage_{$this->screen->taxonomy}_custom_column

FILTER wp-admin\includes\class-wp-terms-list-table.php (ligne 669) github
Filters the displayed columns in the terms list table. The dynamic portion of the hook name, `$this->screen->taxonomy`, refers to the slug of the current taxonomy. Possible hook names include:  - `manage_category_custom_column`  - `manage_post_tag_custom_column`

Paramètres

Entrée :
'', $column_name, $tag->term_id
Sortie :
@param string $string      Custom column output. Default empty.
@param string $column_name Name of the column.
@param int    $term_id     Term ID.

Utilisation

// Modifier la valeur avec le filtre 'manage_{$this->screen->taxonomy}_custom_column'
add_filter('manage_{$this->screen->taxonomy}_custom_column', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre('') {
    // Modifier la valeur
    return '';
}

Actualités

Chargement des actualités...