bsearch_processed_product_content
Filters the processed product content before storage.
Type: filter
Since: 4.2.3
Source: includes/custom-tables/class-sync-manager.php line 452
Parameters
| Type | Name | Description |
|---|---|---|
string | $content | Processed content. |
object | $product | Product object. |
Usage
add_filter( 'bsearch_processed_product_content', function($content, $product) {
// ...
return $content;
} );