Description
Filters the value of the post date.
Usage
add_filter(
'wp_data_sync_post_date'
,
'my_post_date'
, 10, 1
);
Parameters
$value
string
The post date
Code Example
add_filter(
'wp_data_sync_post_date'
,
'my_post_date'
, 10, 1
);
function
my_post_date
(
$value
) {
//Do cool stuff here!!
return
$value
;
}
Contact us if you need a better code example for this hook. We are happy to write one for you.