Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: deleted_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

This hook occurs 2 times in this file.

Line Code
3634      /**
3635       * Fires immediately after a post is deleted from the database.
3636       *
3637       * @since 2.2.0
3638       * @since 5.5.0 Added the `$post` parameter.
3639       *
3640       * @param int     $post_id Post ID.
3641       * @param WP_Post $post    Post object.
3642       */
3643      do_action( 'deleted_post', $post_id, $post );
3644
3645      clean_post_cache( $post );
3646
3647      if ( is_post_type_hierarchical( $post->post_type ) && $children ) {
3648           foreach ( $children as $child ) {
3649                clean_post_cache( $child );
3650           }
3651      }
3652
 
Line Code
6453      }
6454
6455      /** This action is documented in wp-includes/post.php */
6456      do_action( 'delete_post', $post_id, $post );
6457      $result = $wpdb->delete( $wpdb->posts, array( 'ID' => $post_id ) );
6458      if ( ! $result ) {
6459           return false;
6460      }
6461      /** This action is documented in wp-includes/post.php */
6462      do_action( 'deleted_post', $post_id, $post );
6463
6464      wp_delete_attachment_files( $post_id, $meta, $backup_sizes, $file );
6465
6466      clean_post_cache( $post );
6467
6468      return $post;
6469 }
6470
6471 /**