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 |
---|---|
2884 | * Fires immediately prior to an auto-update. |
2885 | * |
2886 | * @since 4.4.0 |
2887 | * |
2888 | * @param string $type The type of update being checked: 'core', 'theme', 'plugin', or 'translation'. |
2889 | * @param object $item The update offer. |
2890 | * @param string $context The filesystem context (a path) against which filesystem access and status |
2891 | * should be checked. |
2892 | */ |
2893 | do_action( 'pre_auto_update', $type, $item, $context ); |
2894 |
|
2895 | $upgrader_item = $item; |
2896 | switch ( $type ) { |
2897 | case 'core': |
2898 | $skin->feedback( __( 'Updating to WordPress %s' ), $item->version ); |
2899 | $item_name = sprintf( __( 'WordPress %s' ), $item->version ); |
2900 | break; |
2901 | case 'theme': |
2902 | $upgrader_item = $item->theme; |