I'm trying to set up a scheduled task in my Wordpress installation which will (eventually) run a script to send an email once a day with a load of data in.
However I can't seem to get a scheduled task to fire at all. I am testing it with a 2 minute interval to see if I can get it working. What I have so far is below, and is at the bottom of my functions.php file. Any idea where I'm going wrong?
add_filter('cron_schedules','my_cron_definer'); function my_cron_definer($schedules){ $schedules['twomin'] = array( 'interval'=> 120, 'display'=> __('Once Every 2 Minutes') ); return $schedules; } add_action('my_periodic_action','my_periodic_function'); function my_periodic_function(){ mail('[email protected]','Test!', 'Test Message'); } wp_schedule_event(time(), 'twomin', 'my_periodic_action'); I'm aware my Wordpress site needs to be getting it's pages visited for the function to run, so I have been clicking around on the site hoping to trigger my function but no luck!
Note: I have swapped my real email address out!