Advertisement
chrishajer

Allow HTML in a specific form field

Sep 16th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. // allow HTML in a specific form field
  3. // update the '344' to the ID of your form
  4. add_filter( 'gform_allowable_tags_344', 'hearts_welcome_here', 10, 2 );
  5. function hearts_welcome_here( $allow_html, $field ) {
  6.    
  7.     // update the '2' to the ID of your field
  8.     if( $field['id'] == 2 )
  9.         return true;
  10.    
  11.     return $allow_html;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement