Search for: Search How can I change the text? Viewing 4 posts - 1 through 4 (of 4 total) April 10, 2011 at 5:10 pm April 10, 2011 #2130 maxParticipant Where can I change the text around new comment field: “Leave a reply”, “You are logged in like…”, “Log out?”, etc. Thanks! April 10, 2011 at 10:30 pm April 10, 2011 #2131 Daniel TaraKeymaster In comments.php the labels for all fields are defined in an array called [code]$fields[/code] April 11, 2011 at 1:01 pm April 11, 2011 #2132 maxParticipant I found nothing. This is there: $defaults = array( ‘fields’ => apply_filters( ‘comment_form_default_fields’, $fields ), ‘comment_field’ => ‘<p class=”comment-form-comment”><textarea id=”comment” name=”comment” cols=”45″ rows=”10″ aria-required=”true”></textarea></p>’, ‘comment_notes_before’ => ” ); ?> <?php if ( function_exists( ‘comment_form’ ) ) comment_form($defaults) ?> April 12, 2011 at 9:52 pm April 12, 2011 #2133 Daniel TaraKeymaster This is the portion you’re interested in: $fields = array( 'author' => '<p class="comment-form-author">' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . ' />' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '</p>', 'email' => '<p class="comment-form-email">' . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . ' />' . '<label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . ' (will not be published)</p>', 'url' => '<p class="comment-form-url">' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" />' . '<label for="url">' . __( 'Website' ) . '</label>' . '</p>', ); Viewing 4 posts - 1 through 4 (of 4 total) Tagged: comments You must be logged in to reply to this topic.