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