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.
| Line | Code |
|---|---|
| 170 | /** |
| 171 | * Fires when an error happens unscheduling a cron event. |
| 172 | * |
| 173 | * @since 6.1.0 |
| 174 | * |
| 175 | * @param WP_Error $result The WP_Error object. |
| 176 | * @param string $hook Action hook to execute when the event is run. |
| 177 | * @param array $v Event data. |
| 178 | */ |
| 179 | do_action( 'cron_unschedule_event_error', $result, $hook, $v ); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Fires scheduled events. |
| 184 | * |
| 185 | * @ignore |
| 186 | * @since 2.1.0 |
| 187 | * |
| 188 | * @param string $hook Name of the hook that was scheduled to be fired. |