<?php
function wp_schedule_single_event( $timestamp, $hook ) {
$args = array_slice( func_get_args(), 2 );
$crons = get_option( 'cron' );
$crons[$timestamp][$hook] = array( 'schedule' => false, 'args' => $args );
ksort( $crons );
update_option( 'cron', $crons );
}
?>