Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created May 21, 2023 09:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MjHead/510cb5416b26eb73ae743b2aa4b09443 to your computer and use it in GitHub Desktop.
Save MjHead/510cb5416b26eb73ae743b2aa4b09443 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'jet-form-builder/form-handler/form-data', function( $request ) {
if ( isset( $request['field_name_to_sanitize'] ) ) {
$request['field_name_to_sanitize'] = wp_strip_all_tags( $request['field_name_to_sanitize'] );
}
return $request;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment