Filters the comment form fields, including the textarea.
$comment_fields
Sortie :
@param array $comment_fields The comment fields.
// 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;
}
Chargement des actualités...