Testing WP-Geshi plugin

Posted by kent at 9 August 2006

Category: Dev


<?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 );
}
?>

Leave a Reply

Leave a Reply
  • (required)
  • (required) (will not be published)