manage_{$this->screen->id}_custom_column_js_template

ACTION wp-admin\includes\class-wp-application-passwords-list-table.php (ligne 251) github
Fires in the JavaScript row template for each custom column in the Application Passwords list table. Custom columns are registered using the {@see 'manage_application-passwords-user_columns'} filter.

Paramètres

Entrée :
$column_name
Sortie :
@param string $column_name Name of the custom column.

Utilisation

// Ajouter une fonction au hook action 'manage_{$this->screen->id}_custom_column_js_template'
add_action('manage_{$this->screen->id}_custom_column_js_template', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($column_name) {
    // Votre code ici
    error_log('Hook manage_{$this->screen->id}_custom_column_js_template déclenché');
}

Actualités

Chargement des actualités...