Advertisement
verygoodplugins

Untitled

Oct 12th, 2020 (edited)
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function custom_format_checkbox( $value, $field_type, $field ) {
  2.  
  3.     $value = str_replace( 'OptionName', 'NewOptionName', $value );
  4.  
  5.     return $value;
  6.  
  7. }
  8.  
  9. add_filter( 'wpf_format_field_value', 'custom_format_checkbox', 20, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement