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 |
---|---|
471 | * Fires after a revision is deleted via the REST API. |
472 | * |
473 | * @since 4.7.0 |
474 | * |
475 | * @param WP_Post|false|null $result The revision object (if it was deleted or moved to the Trash successfully) |
476 | * or false or null (failure). If the revision was moved to the Trash, $result represents |
477 | * its new state; if it was deleted, $result represents its state before deletion. |
478 | * @param WP_REST_Request $request The request sent to the API. |
479 | */ |
480 | do_action( 'rest_delete_revision', $result, $request ); |
481 |
|
482 | if ( ! $result ) { |
483 | return new WP_Error( |
484 | 'rest_cannot_delete', |
485 | __( 'The post cannot be deleted.' ), |
486 | array( 'status' => 500 ) |
487 | ); |
488 | } |
489 |
|