Created
September 27, 2018 10:30
-
-
Save zainaali/9202949ccce47da869dad845fce45665 to your computer and use it in GitHub Desktop.
Customize message field of comment form wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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