woocommerce_cleanup_rate_limits
Usage
add_action( 'woocommerce_cleanup_rate_limits', 'wp_kama_woocommerce_cleanup_rate_limits_action' );
/**
* Function for `woocommerce_cleanup_rate_limits` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_cleanup_rate_limits_action(){
// action...
}Where the hook is called
woocommerce_cleanup_rate_limits
woocommerce/includes/class-woocommerce.php 1519
do_action( 'woocommerce_cleanup_rate_limits' );
Where the hook is used in WooCommerce
woocommerce/includes/class-wc-rate-limiter.php 43
add_action( 'woocommerce_cleanup_rate_limits', array( __CLASS__, 'cleanup' ) );