WC_REST_Products_V1_Controller::clear_transients()publicWC 1.0

Clear cache/transients.

Method of the class: WC_REST_Products_V1_Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_REST_Products_V1_Controller = new WC_REST_Products_V1_Controller();
$WC_REST_Products_V1_Controller->clear_transients( $post );
$post(WP_Post) (required)
Post data.

WC_REST_Products_V1_Controller::clear_transients() code WC 8.7.0

public function clear_transients( $post ) {
	wc_delete_product_transients( $post->ID );
}