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
4774           delete_transient( 'dirsize_cache' );
4775
4776      /**
4777       * Fires before an attachment is deleted, at the start of wp_delete_attachment().
4778       *
4779       * @since 2.0.0
4780       *
4781       * @param int $post_id Attachment ID.
4782       */
4783      do_action( 'delete_attachment', $post_id );
4784
4785      wp_delete_object_term_relationships($post_id, array('category', 'post_tag'));
4786      wp_delete_object_term_relationships($post_id, get_object_taxonomies($post->post_type));
4787
4788      // Delete all for any posts.
4789      delete_metadata( 'post', null, '_thumbnail_id', $post_id, true );
4790
4791      $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id ));
4792      foreach ( $comment_ids as $comment_id )