Filters the submit field for the comment form to display. The submit field includes the submit button, hidden fields for the comment form, and any wrapper markup.
$submit_field, $args
Sortie :
@param string $submit_field HTML markup for the submit field. @param array $args Arguments passed to comment_form().
// Modifier la valeur avec le filtre 'comment_form_submit_field'
add_filter('comment_form_submit_field', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($submit_field) {
// Modifier la valeur
return $submit_field;
}
Chargement des actualités...