WC_REST_Products_V1_Controller::clear_transients()
Clear cache/transients.
Метод класса: WC_REST_Products_V1_Controller{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_REST_Products_V1_Controller = new WC_REST_Products_V1_Controller(); $WC_REST_Products_V1_Controller->clear_transients( $post );
- $post(WP_Post) (обязательный)
- Post data.
Код WC_REST_Products_V1_Controller::clear_transients() WC REST Products V1 Controller::clear transients WC 9.3.1
public function clear_transients( $post ) { wc_delete_product_transients( $post->ID ); }