WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event()public staticWC 1.0

Clear deprecated scheduled action that was used to fetch promotions in WooCommerce 8.8. Replaced with a transient in WooCommerce 9.0.

Method of the class: WC_Admin_Marketplace_Promotions{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event();

WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event() code WC 9.5.1

public static function clear_deprecated_scheduled_event() {
	if ( function_exists( 'as_unschedule_all_actions' ) ) {
		as_unschedule_all_actions( 'woocommerce_marketplace_fetch_promotions' );
	}
}