stremblaym

Untitled

Sep 17th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. ...
  2. protected function order(){
  3.  
  4.     add_filter('acf/validate_save_post', function(){
  5.  
  6.  
  7.         if(!isset($_POST['acf']['field_65067bd15086d'])) return;
  8.  
  9.         $email = $_POST['acf']['field_65067bd15086d']['field_65067bde5086e'];
  10.         $confirmEmail = $_POST['acf']['field_65067bd15086d']['field_65067e4f26db1'];
  11.  
  12.  
  13.         if(
  14.             !filter_var($email, FILTER_VALIDATE_EMAIL)
  15.  
  16.             ||
  17.  
  18.             $email !== $confirmEmail
  19.         ){
  20.  
  21.             acf_add_validation_error('acf-field_65067bd15086d-field_65067bde5086e', 'ok');
  22.  
  23.         }
  24.  
  25.     });
  26.  
  27. }
  28. ...
Advertisement
Add Comment
Please, Sign In to add comment