Update custom-comments.php
This commit is contained in:
parent
b6d780dfe2
commit
3c1ca8cee6
|
@ -22,8 +22,8 @@
|
||||||
add_filter( 'comment_form_defaults', 'bootstrap3_comment_form' );
|
add_filter( 'comment_form_defaults', 'bootstrap3_comment_form' );
|
||||||
function bootstrap3_comment_form( $args ) {
|
function bootstrap3_comment_form( $args ) {
|
||||||
$args['comment_field'] = '<div class="form-group comment-form-comment">
|
$args['comment_field'] = '<div class="form-group comment-form-comment">
|
||||||
<label for="comment">' . _x( 'Comment', 'noun', 'understrap' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label>
|
<label for="comment">' . _x( 'Comment', 'noun', 'understrap' ) . '</label>
|
||||||
<textarea class="form-control" id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>
|
<textarea class="form-control" id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>
|
||||||
</div>';
|
</div>';
|
||||||
return $args;
|
return $args;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue