'weekly', ); } /** * Removes all cron events. * * @since 6.3.2 */ public static function remove_crons() { $events = self::get_events(); foreach ( $events as $event => $recurrence ) { $timestamp = wp_next_scheduled( $event ); if ( false !== $timestamp ) { wp_unschedule_event( $timestamp, $event ); } } } }