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