Description
Fires just before the data is processed.
Usage
apply_filters(
'wp_data_sync_data'
,
$data
);
Parameters
$data | array | The data array |
Code Example
add_filter(
'wp_data_sync_data',
function
(
$data
) {
//Do cool stuff here!!
return
$data
;
), 10, 1 );
Contact us if you need a code example for this hook. We are happy to review your request.