Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_revision

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

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