bsearch_processed_post_content
Filters the processed post content before storage.
Type: filter
Since: 4.2.0
Source: includes/pro/custom-tables/class-sync-manager.php line 443
Parameters
| Type | Name | Description |
|---|---|---|
string |
$content |
Processed content. |
\WP_Post |
$post |
Post object. |
Usage
add_filter( 'bsearch_processed_post_content', function($content, $post) {
// ...
return $content;
} );