Advertisement
CodeDropz

Change Archive Name - CF7 Email Field

Jul 20th, 2020
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. add_filter('dnd_cf7_archive_name','upload_change_archive_name', 10, 3);
  2.  
  3. function upload_change_archive_name( $file_name, $tags, $file_upload ) {
  4.     if( isset( $_POST['your-email'] ) ) {
  5.         $file_name = sanitize_text_field( trim( $_POST['your-email'] ) );
  6.     }
  7.     return $file_name;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement