Advertisement
verygoodplugins

Untitled

May 15th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function custom_format_checkbox( $value, $field_type, $field ) {
  2.  
  3.     if ( $field_type == 'checkbox' && field == 'boutique_awards_winner_2018' ) {
  4.  
  5.         if( empty( $value ) ) {
  6.             $value = 'No';
  7.         } else {
  8.             $value = 'Yes';
  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