WC_Rate_Limiter::get_cached()protected staticWC 1.0

Retrieve a cached rate limit.

Метод класса: WC_Rate_Limiter{}

Хуков нет.

Возвращает

true|false|int.

Использование

$result = WC_Rate_Limiter::get_cached( $action_id );
$action_id(строка) (обязательный)
Identifier of the action.

Код WC_Rate_Limiter::get_cached() WC 8.7.0

protected static function get_cached( $action_id ) {
	return wp_cache_get( self::get_cache_key( $action_id ), self::CACHE_GROUP );
}