Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'wpf_format_field_value', function( $value, $field_type, $field ) {
- // Only modify string values that contain semicolons
- if ( is_string( $value ) && strpos( $value, ';' ) !== false ) {
- $value = ';' . $value;
- }
- return $value;
- }, 20, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement