restrict_manage_comments

ACTION wp-admin\includes\class-wp-comments-list-table.php (ligne 423) github
Fires just before the Filter submit button for comment types.

Paramètres

Entrée :
N/A
Sortie :
N/A

Utilisation

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

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

Actualités

Chargement des actualités...