Merge pull request #17676 from woocommerce/update/17672
Clear transients when product terms are updated
This commit is contained in:
commit
8fe5d6bad0
|
@ -108,6 +108,9 @@ class WC_Post_Data {
|
||||||
foreach ( array_merge( $tt_ids, $old_tt_ids ) as $id ) {
|
foreach ( array_merge( $tt_ids, $old_tt_ids ) as $id ) {
|
||||||
delete_transient( 'wc_ln_count_' . md5( sanitize_key( $taxonomy ) . sanitize_key( $id ) ) );
|
delete_transient( 'wc_ln_count_' . md5( sanitize_key( $taxonomy ) . sanitize_key( $id ) ) );
|
||||||
}
|
}
|
||||||
|
if ( in_array( get_post_type( $object_id ), array( 'product', 'product_variation' ) ) ) {
|
||||||
|
self::delete_product_query_transients();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue