WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event
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.
Returns
null. Nothing (null).
Usage
$result = WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event();
WC_Admin_Marketplace_Promotions::clear_deprecated_scheduled_event() WC Admin Marketplace Promotions::clear deprecated scheduled event code WC 10.3.6
public static function clear_deprecated_scheduled_event() {
if ( function_exists( 'as_unschedule_all_actions' ) ) {
as_unschedule_all_actions( 'woocommerce_marketplace_fetch_promotions' );
}
}