2015-03-31 14:17:52 +00:00
|
|
|
<?php
|
2016-11-21 16:25:56 +00:00
|
|
|
/**
|
|
|
|
* Comment layout.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2015-03-31 14:17:52 +00:00
|
|
|
|
2016-11-21 16:25:56 +00:00
|
|
|
// Comments form.
|
|
|
|
add_filter( 'comment_form_default_fields', 'bootstrap3_comment_form_fields' );
|
2015-03-31 14:17:52 +00:00
|
|
|
|
2016-11-21 16:25:56 +00:00
|
|
|
/**
|
|
|
|
* Creates the comments form.
|
|
|
|
*
|
|
|
|
* @param string $fields Form fields.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function bootstrap3_comment_form_fields( $fields ) {
|
|
|
|
$commenter = wp_get_current_commenter();
|
|
|
|
$req = get_option( 'require_name_email' );
|
|
|
|
$aria_req = ( $req ? " aria-required='true'" : '' );
|
|
|
|
$html5 = current_theme_supports( 'html5', 'comment-form' ) ? 1 : 0;
|
|
|
|
$fields = array(
|
|
|
|
'author' => '<div class="form-group comment-form-author" <label for="author">' . __( 'Name',
|
|
|
|
'understrap' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
|
|
|
|
'<input class="form-control" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . '></div>',
|
|
|
|
'email' => '<div class="form-group comment-form-email"><label for="email">' . __( 'Email',
|
|
|
|
'understrap' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
|
|
|
|
'<input class="form-control" id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . '></div>',
|
|
|
|
'url' => '<div class="form-group comment-form-url"><label for="url">' . __( 'Website',
|
|
|
|
'understrap' ) . '</label> ' .
|
|
|
|
'<input class="form-control" id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"></div>',
|
|
|
|
);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_filter( 'comment_form_defaults', 'bootstrap3_comment_form' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Builds the form.
|
|
|
|
*
|
|
|
|
* @param string $args Arguments for form's fields.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function bootstrap3_comment_form( $args ) {
|
|
|
|
$args['comment_field'] = '<div class="form-group comment-form-comment">
|
2016-02-23 07:54:38 +00:00
|
|
|
<label for="comment">' . _x( 'Comment', 'noun', 'understrap' ) . ( ' <span class="required">*</span>' ) . '</label>
|
2016-11-01 16:13:23 +00:00
|
|
|
<textarea class="form-control" id="comment" name="comment" aria-required="true" cols="45" rows="8"></textarea>
|
2015-03-31 14:17:52 +00:00
|
|
|
</div>';
|
2016-11-21 16:25:56 +00:00
|
|
|
$args['class_submit'] = 'btn btn-secondary'; // since WP 4.1.
|
|
|
|
return $args;
|
|
|
|
}
|