Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_delete_post

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
2437      /**
2438       * Filters whether a post deletion should take place.
2439       *
2440       * @since 4.4.0
2441       *
2442       * @param bool    $delete       Whether to go forward with deletion.
2443       * @param WP_Post $post         Post object.
2444       * @param bool    $force_delete Whether to bypass the trash.
2445       */
2446      $check = apply_filters( 'pre_delete_post', null, $post, $force_delete );
2447      if ( null !== $check ) {
2448           return $check;
2449      }
2450
2451      /**
2452       * Fires before a post is deleted, at the start of wp_delete_post().
2453       *
2454       * @since 3.2.0
2455       *