Update custom-comments.php
This commit is contained in:
parent
010e99dc5e
commit
078842de84
|
@ -21,9 +21,8 @@
|
|||
|
||||
add_filter( 'comment_form_defaults', 'bootstrap3_comment_form' );
|
||||
function bootstrap3_comment_form( $args ) {
|
||||
$req = get_option( 'require_name_email' );
|
||||
$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' ) . ( ' <span class="required">*</span>' ) . '</label>
|
||||
<textarea class="form-control" id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>
|
||||
</div>';
|
||||
$args['class_submit'] = 'btn btn-default'; // since WP 4.1
|
||||
|
|
Reference in New Issue