rtCamp / nginx-helper

Nginx Helper for WordPress caching, permalinks & efficient file handling in multisite
https://wordpress.org/plugins/nginx-helper/
228 stars 121 forks source link

How to purge cache after updating a product via WooCommerce REST API? #299

Open maxisosa opened 1 year ago

maxisosa commented 1 year ago

add_action( 'woocommerce_update_product', 'remover_cache_produto', 10, 1 ); function remover_cache_produto($product_id) { $product = wc_get_product($product_id);

  ...

//clean cache }