Recent

bsearch_processed_post_content filter Pro only

bsearch_processed_post_content

Filters the processed post content before storage.

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

Parameters

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

Usage

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