Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Last active December 26, 2015 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shemul49rmc/7213606 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7213606 to your computer and use it in GitHub Desktop.
Edit Comment Form
/** Edit comments form *http://iamshemul.com/?p=2395*/
function modified_comment_form_args($args) {
$args['title_reply'] = 'Tell us what you\'re thinking...';
$args['comment_notes_before'] = ' <p class="comment-policy">All comments are moderated.Please Do not Spam</p>
<p class="required"><small>* Denotes required field.</small></p>';
$args['comment_field'] = '<p class="comment-form-comment">' .
'<textarea id="comment" name="comment" cols="45" rows="8" tabindex="4" aria-required="true"></textarea>' .
'</p><!-- #form-section-comment .form-section -->';
return $args;
}
add_filter('genesis_comment_form_args', 'modified_comment_form_args');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment