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