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
1392                @ unlink($thumbfile);
1393           }
1394      }
1395
1396      $file = apply_filters('wp_delete_file', $file);
1397
1398      if ( ! empty($file) )
1399           @ unlink($file);
1400
1401      do_action('delete_attachment', $postid);
1402
1403      return $post;
1404 }
1405
1406 function wp_get_attachment_metadata( $post_id, $unfiltered = false ) {
1407      $post_id = (int) $post_id;
1408      if ( !$post =& get_post( $post_id ) )
1409           return false;
1410