comment_form_fields

FILTER wp-includes\comment-template.php (ligne 2787) github
Filters the comment form fields, including the textarea.

Paramètres

Entrée :
$comment_fields
Sortie :
@param array $comment_fields The comment fields.

Utilisation

// Modifier la valeur avec le filtre 'comment_form_fields'
add_filter('comment_form_fields', 'ma_fonction_filtre', 10, 1);

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

Actualités

Chargement des actualités...