WC_Admin_Marketplace_Promotions::clear_deprecated_action()public staticWC 1.0

We can't clear deprecated action from AS when it's running, so we schedule a new single action to clear the deprecated woocommerce_marketplace_fetch_promotions action.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$result = WC_Admin_Marketplace_Promotions::clear_deprecated_action();

Код WC_Admin_Marketplace_Promotions::clear_deprecated_action() WC 9.4.2

public static function clear_deprecated_action() {
	if ( function_exists( 'as_schedule_single_action' ) ) {
		as_schedule_single_action( time(), 'woocommerce_marketplace_fetch_promotions_clear' );
	}
}