Change button post comment in wordpress comment form

 function comment_form_submit_button($button) {
    $button ='<button class="btn waves-effect waves-light" type="submit">Post Question' . get_comment_id_fields();
    return $button;
}
add_filter('comment_form_submit_button', 'comment_form_submit_button');

Leave a Reply

Your email address will not be published. Required fields are marked *