Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. /**
  3. * Set a max length attribute for all paragraph fields in Caldera Forms
  4. */
  5. add_filter( 'caldera_forms_field_attributes-paragraph', function( $attrs ){
  6. $attrs[ 'maxlength' ] = 255;
  7. return $attrs;
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement