Changeset 14092
- Timestamp:
- 04/15/2010 04:16:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r14080 r14092 1497 1497 '<label for="author">' . __( 'Name' ) . '</label> ' . 1498 1498 ( $req ? '<span class="required">*</span>' : '' ) . 1499 '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" tabindex="1"' . $aria_req . ' />' . 1500 '</p><!-- #form-section-author .form-section -->', 1499 '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" tabindex="1"' . $aria_req . ' /></p>', 1501 1500 'email' => '<p class="comment-form-email">' . 1502 1501 '<label for="email">' . __( 'Email' ) . '</label> ' . 1503 1502 ( $req ? '<span class="required">*</span>' : '' ) . 1504 '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" tabindex="2"' . $aria_req . ' />' . 1505 '</p><!-- #form-section-email .form-section -->', 1503 '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" tabindex="2"' . $aria_req . ' /></p>', 1506 1504 'url' => '<p class="comment-form-url">' . 1507 1505 '<label for="url">' . __( 'Website' ) . '</label>' . 1508 '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" tabindex="3" />' . 1509 '</p><!-- #form-section-url .form-section -->' ) ), 1506 '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" tabindex="3" /></p>' ) ), 1510 1507 'comment_field' => '<p class="comment-form-comment">' . 1511 1508 '<label for="comment">' . __( 'Comment' ) . '</label>' . 1512 1509 '<textarea id="comment" name="comment" cols="45" rows="8" tabindex="4" aria-required="true"></textarea>' . 1513 '</p> <!-- #form-section-comment .form-section -->',1510 '</p>', 1514 1511 'must_log_in' => '<p class="must-log-in">' . sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>', 1515 1512 'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Log out?</a></p>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ), … … 1558 1555 </form> 1559 1556 <?php endif; ?> 1560 </div> 1557 </div><!-- #respond --> 1561 1558 <?php do_action( 'comment_form_after' ); ?> 1562 1559 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.