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 |
|---|---|
| 193 | * See the {@see 'allow_dev_auto_core_updates'}, {@see 'allow_minor_auto_core_updates'}, |
| 194 | * and {@see 'allow_major_auto_core_updates'} filters for a more straightforward way to |
| 195 | * adjust core updates. |
| 196 | * |
| 197 | * @since 3.7.0 |
| 198 | * |
| 199 | * @param bool $update Whether to update. |
| 200 | * @param object $item The update offer. |
| 201 | */ |
| 202 | $update = apply_filters( "auto_update_{$type}", $update, $item ); |
| 203 | |
| 204 | if ( ! $update ) { |
| 205 | if ( 'core' === $type ) { |
| 206 | $this->send_core_update_notification_email( $item ); |
| 207 | } |
| 208 | return false; |
| 209 | } |
| 210 | |
| 211 | // If it's a core update, are we actually compatible with its requirements? |