WC_Comments::delete_comments_count_cache()public staticWC 1.0

Delete comments count cache whenever there is new comment or the status of a comment changes. Cache will be regenerated next time WC_Comments::wp_count_comments() is called.

Method of the class: WC_Comments{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Comments::delete_comments_count_cache();

WC_Comments::delete_comments_count_cache() code WC 8.7.0

public static function delete_comments_count_cache() {
	delete_transient( 'wc_count_comments' );
}