Forum Moderators: coopster
<?php
$type = timestamp;
$time = current_time( $type, $gmt = 0 );
$timestamp = $time + 60 ;
function my_timed_function_$time(){ echo '<h1>POPUP</h1>'; // Do something. Anything.}
add_action('my_timed_action','my_timed_function_"<?php $time ?>"');
wp_schedule_single_event($timestamp,'my_timed_action');
?>