Description
Filters the value of the clean value. This fires just after the value is sanitized.
Usage
apply_filters( 'wp_data_sync_clean_value', $clean_value );
Parameters
$clean_value | mixed | The sanitized value |
Code Example
add_filter( 'wp_data_sync_clean_value', function( $clean_value ) {
//Do cool stuff here!!
return $clean_value;
), 10, 1 );
Contact us if you need a code example for this hook. We are happy to review your request.