Recent

crp_processed_post_content filter Pro only

crp_processed_post_content

Filters the processed post content before storage.

Type: filter
Since: 4.0.0
Source: includes/custom-tables/class-sync-manager.php line 303

Parameters

TypeNameDescription
string$contentProcessed content.
\WP_Post$postPost object.

Usage

add_filter( 'crp_processed_post_content', function($content, $post) {
    // ...
    return $content;
} );