Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Limit reviews to 100 characters (change the number to your desired length)
- * Paste this in your active theme's functions.php file.
- * @param array $rules
- * @return array
- */
- add_filter( 'site-reviews/validation/rules', function( $rules ) {
- $rules['content'] = 'required|max:100';
- return $rules;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement