Skip to content

Instantly share code, notes, and snippets.

@zainaali
Created September 27, 2018 10:30
Show Gist options
  • Save zainaali/9202949ccce47da869dad845fce45665 to your computer and use it in GitHub Desktop.
Save zainaali/9202949ccce47da869dad845fce45665 to your computer and use it in GitHub Desktop.
Customize message field of comment form wordpress
function glowlogix_comment_field($comment_field){
$comment_field =
'<li class="col-sm-12">
<textarea required placeholder="MESSAGE" class="form-control" name="comment" aria-required="true"></textarea>
</li>';
return $comment_field;
}
add_filter('comment_form_field_comment', 'glowlogix_comment_field');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment