Created
October 12, 2015 13:36
-
-
Save Trippnology/877538c6ab7bb0f06d21 to your computer and use it in GitHub Desktop.
WP: Add Bootstrap classes to comment form
This file contains 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
// Add to your theme's comments.php | |
<?php | |
$comment_args = array( | |
'class_submit' => 'btn btn-default submit', | |
'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label> <textarea id="comment" name="comment" class="form-control" cols="45" rows="8" aria-required="true" required="required"></textarea></p>', | |
'fields' => array( | |
'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . | |
'<input id="author" name="author" class="form-control" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . $html_req . ' /></p>', | |
'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . | |
'<input id="email" name="email" class="form-control" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" aria-describedby="email-notes"' . $aria_req . $html_req . ' /></p>', | |
'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' . | |
'<input id="url" name="url" class="form-control" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>', | |
) | |
); | |
comment_form($comment_args); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No problem. It was exactly what I needed. (Once I figured out the missing bit).