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