Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: after_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
2672      /**
2673       * Fires after a post is deleted, at the conclusion of wp_delete_post().
2674       *
2675       * @since 3.2.0
2676       *
2677       * @see wp_delete_post()
2678       *
2679       * @param int $postid Post ID.
2680       */
2681      do_action( 'after_delete_post', $postid );
2682
2683      return $post;
2684 }
2685
2686 /**
2687  * Reset the page_on_front, show_on_front, and page_for_post settings when
2688  * a linked page is deleted or trashed.
2689  *
2690  * Also ensures the post is no longer sticky.