From 4079183e42868138e5e7ae608c52b2858c148431 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 6 Sep 2013 20:52:10 +0000 Subject: [PATCH] Document the event hook in wp-cron.php. see #25229. Built from https://develop.svn.wordpress.org/trunk@25290 git-svn-id: http://core.svn.wordpress.org/trunk@25254 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-cron.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wp-cron.php b/wp-cron.php index 21706cbaf2..37d07e8305 100644 --- a/wp-cron.php +++ b/wp-cron.php @@ -89,6 +89,14 @@ foreach ( $crons as $timestamp => $cronhooks ) { wp_unschedule_event( $timestamp, $hook, $v['args'] ); + /** + * Fires scheduled events. + * + * @since 2.1.0 + * + * @param string $hook Name of the hook that was scheduled to be fired. + * @param array $v['args'] The arguments to be passed to the hook. + */ do_action_ref_array( $hook, $v['args'] ); // If the hook ran too long and another cron process stole the lock, quit.