Created
May 21, 2023 09:05
-
-
Save MjHead/510cb5416b26eb73ae743b2aa4b09443 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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