Description
Filters the value of the post ping status.
Usage
apply_filters(
'wp_data_sync_post_ping_status'
,
$value
);
Parameters
$value | string | The value of the post ping status |
Code Example
add_filter(
'wp_data_sync_post_ping_status',
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.