mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-06 12:42:25 +08:00
6 lines
216 B
Text
6 lines
216 B
Text
add_action( 'woocommerce_product_set_stock', 'w3tc_flush_all_custom', 999 );
|
|
add_action( 'woocommerce_variation_set_stock', 'w3tc_flush_all_custom', 999 );
|
|
|
|
function w3tc_flush_all_custom() {
|
|
w3tc_flush_all();
|
|
}
|