add_action('example_action', 'example', 1, 3);
$args = array ( 2, 1, 3 );
wp_schedule_single_event(time(), 'example_action', $args);
function example($a, $b, $c)
{
//doing things here
}
add_action('example_action', 'example', 1, 3);
$args = array ( 2, 1, 3 );
wp_schedule_single_event(time(), 'example_action', $args);
function example($a, $b, $c)
{
//doing things here
}
add_action('example_action', 'example', 1, 3); $args = array ( 2, 1, 3 ); wp_schedule_single_event(time(), 'example_action', $args); function example($a, $b, $c) { //doing things here }