Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

cron job

// Schedule Cron Job Event
function export_google_sheets_cron() {
	if ( ! wp_next_scheduled( '' ) ) {
		wp_schedule_event( current_time( 'timestamp' ), 'hourly', '' );
	}
}
add_action( 'wp', 'export_google_sheets_cron' );