Advertisement
Guest User

Untitled

a guest
Apr 30th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.46 KB | None | 0 0
  1. <?php $comment_args = array( 'fields' => apply_filters( 'comment_form_default_fields', array(
  2.     'author' => '<p class="comment-form-author">' .
  3.                 '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' />' .
  4.                 '<label for="author">' . __( '&nbsp&nbsp Name' ) . '</label> ' .
  5.                 ( $req ? '<span class="required">*</span>' : '' ) .
  6.                 '</p><!-- #form-section-author .form-section -->',
  7.     'email'  => '<p class="comment-form-email">' .
  8.                 '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' />' .
  9.                 '<label for="email">' . __( '&nbsp&nbsp E-mail' ) . '</label> ' .
  10.                 ( $req ? '<span class="required">*</span>' : '' ) .
  11.                 '</p><!-- #form-section-email .form-section -->',
  12.     'url'    => '<p class="comment-form-url">' .
  13.                 '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" />' .
  14.                 '<label for="url">' . __( 'Website' ) . '</label> ' .
  15.                 '</p><!-- #form-section-url .form-section -->',
  16.     'comment_field' => '<p class="comment-form-comment">' .
  17.                 '<label for="comment">' . __( '' ) . '</label>' .
  18.                 '<textarea id="comment" name="comment" cols="70" rows="8" aria-required="true"></textarea>' .
  19.                 '</p><!-- #form-section-comment .form-section -->',
  20.     'comment_notes_before' => '',
  21.     'comment_notes_after' => '',
  22. );
  23. comment_form($comment_args); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement