Advertisement
verygoodplugins

Untitled

May 21st, 2020
1,588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function custom_format_checkbox( $value, $field_type, $field ) {
  2.  
  3.     if ( 'checkbox' == $field_type ) {
  4.  
  5.         if ( ! empty( $value ) )
  6.             $value = 'Ja';
  7.         } elseif {
  8.             $value = null;
  9.         }
  10.  
  11.     }
  12.  
  13.     return $value;
  14.  
  15. }
  16.  
  17. add_filter( 'wpf_format_field_value', 'custom_format_checkbox', 20, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement