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