Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save braddalton/6486052 to your computer and use it in GitHub Desktop.
Save braddalton/6486052 to your computer and use it in GitHub Desktop.
function wpsites_modify_comment_form_text_area($arg) {
$arg['comment_field'] = '<p class="comment-form-comment"><label for="comment">' . _x( 'Your Feedback Is Appreciated', 'noun' ) . '</label><textarea id="comment" name="comment" cols="45" rows="1" aria-required="true"></textarea></p>';
return $arg;
}
add_filter('comment_form_defaults', 'wpsites_modify_comment_form_text_area');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment