Advertisement
verygoodplugins

Untitled

Oct 22nd, 2019
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function custom_format_checkbox( $value, $field_type, $field ) {
  2.  
  3.     if ( $value == 0 ) {
  4.         $value = 'No';
  5.     } elseif( $value == 1 ) {
  6.         $value = 'Yes';
  7.     }
  8.  
  9.     return $value;
  10.  
  11. }
  12.  
  13. add_filter( 'wpf_format_field_value', 'custom_format_checkbox', 20, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement