Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created March 28, 2018 09:50
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 rahularyan/38d60dfeba0eb432d4d308d3b039929f to your computer and use it in GitHub Desktop.
Save rahularyan/38d60dfeba0eb432d4d308d3b039929f to your computer and use it in GitHub Desktop.
<?php
/**
* Hook to filter comments form.
*
* @param array $form Comment form
*/
add_filter( 'ap_comment_form_fields', function( $form ) {
$form['fields']['content']['min_length'] = 1;
return $form;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment