Filters the content of the comment textarea field for display.
$field
Sortie :
@param string $args_comment_field The content of the comment textarea field.
// Modifier la valeur avec le filtre 'comment_form_field_comment'
add_filter('comment_form_field_comment', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($field) {
// Modifier la valeur
return $field;
}
Chargement des actualités...