WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
68 | * An object containing an event's data. |
69 | * |
70 | * @type string $hook Action hook to execute when the event is run. |
71 | * @type int $timestamp Unix timestamp (UTC) for when to next run the event. |
72 | * @type string|false $schedule How often the event should subsequently recur. |
73 | * @type array $args Array containing each separate argument to pass to the hook's callback function. |
74 | * @type int $interval The interval time in seconds for the schedule. Only present for recurring events. |
75 | * } |
76 | */ |
77 | $pre = apply_filters( 'pre_schedule_event', null, $event ); |
78 | if ( null !== $pre ) { |
79 | return $pre; |
80 | } |
81 |
|
82 | /* |
83 | * Check for a duplicated event. |
84 | * |
85 | * Don't schedule an event if there's already an identical event |
86 | * within 10 minutes. |
Line | Code |
200 | $event = (object) array( |
201 | 'hook' => $hook, |
202 | 'timestamp' => $timestamp, |
203 | 'schedule' => $recurrence, |
204 | 'args' => $args, |
205 | 'interval' => $schedules[ $recurrence ]['interval'], |
206 | ); |
207 |
|
208 | /** This filter is documented in wp-includes/cron.php */ |
209 | $pre = apply_filters( 'pre_schedule_event', null, $event ); |
210 | if ( null !== $pre ) { |
211 | return $pre; |
212 | } |
213 |
|
214 | /** This filter is documented in wp-includes/cron.php */ |
215 | $event = apply_filters( 'schedule_event', $event ); |
216 |
|
217 | // A plugin disallowed this event |
218 | if ( ! $event ) { |