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 |
---|---|
175 |
|
176 | $rollback_result = $this->upgrade( $current, array_merge( $parsed_args, array( 'do_rollback' => true ) ) ); |
177 |
|
178 | $original_result = $result; |
179 | $result = new WP_Error( 'rollback_was_required', $this->strings['rollback_was_required'], (object) array( 'update' => $original_result, 'rollback' => $rollback_result ) ); |
180 | } |
181 | } |
182 |
|
183 | /** This action is documented in wp-admin/includes/class-wp-upgrader.php */ |
184 | do_action( 'upgrader_process_complete', $this, array( 'action' => 'update', 'type' => 'core' ) ); |
185 |
|
186 | // Clear the current updates |
187 | delete_site_transient( 'update_core' ); |
188 |
|
189 | if ( ! $parsed_args['do_rollback'] ) { |
190 | $stats = array( |
191 | 'update_type' => $current->response, |
192 | 'success' => true, |
193 | 'fs_method' => $wp_filesystem->method, |