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.
$column_name
Sortie :
@param string $column_name Name of the custom column.
// 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é');
}
Chargement des actualités...