Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: delete_attachment

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
3826      $intermediate_sizes = array();
3827      foreach ( get_intermediate_image_sizes() as $size ) {
3828           if ( $intermediate = image_get_intermediate_size( $post_id, $size ) )
3829                $intermediate_sizes[] = $intermediate;
3830      }
3831
3832      if ( is_multisite() )
3833           delete_transient( 'dirsize_cache' );
3834
3835      do_action('delete_attachment', $post_id);
3836
3837      wp_delete_object_term_relationships($post_id, array('category', 'post_tag'));
3838      wp_delete_object_term_relationships($post_id, get_object_taxonomies($post->post_type));
3839
3840      delete_metadata( 'post', null, '_thumbnail_id', $post_id, true ); // delete all for any posts.
3841
3842      $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id ));
3843      foreach ( $comment_ids as $comment_id )
3844           wp_delete_comment( $comment_id, true );