manage_users_extra_tablenav

ACTION wp-admin\includes\class-wp-users-list-table.php (ligne 342) github
Fires immediately following the closing "actions" div in the tablenav for the users list table.

Paramètres

Entrée :
$which
Sortie :
@param string $which The location of the extra table nav markup: 'top' or 'bottom'.

Utilisation

// Ajouter une fonction au hook action 'manage_users_extra_tablenav'
add_action('manage_users_extra_tablenav', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($which) {
    // Votre code ici
    error_log('Hook manage_users_extra_tablenav déclenché');
}

Actualités

Chargement des actualités...