Advertisement
CodeDropz

Codedropz Upload - Support or Fix multi-lingual custom filename

Nov 22nd, 2022 (edited)
1,495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_filter('sanitize_title', 'custom_title_sanitization', 10, 3 );
  2.  
  3. function custom_title_sanitization( $title, $raw_title, $context ){
  4.     if( isset( $_POST['_wpcf7'] ) ){
  5.         return $raw_title;
  6.     }
  7.     return $title;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement