register_action( 'admin_init', array( $this, 'schedule_cron' ) ); } /** * Schedule cron */ public function schedule_cron() { if ( ! wp_next_scheduled( self::CRON_HOOK ) ) { wp_schedule_event( time(), 'daily', self::CRON_HOOK ); } } /** * Unschedule cron */ public function unschedule_cron() { wp_clear_scheduled_hook( self::CRON_HOOK ); } }