WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4082 | $intermediate_sizes = array(); |
| 4083 | foreach ( get_intermediate_image_sizes() as $size ) { |
| 4084 | if ( $intermediate = image_get_intermediate_size( $post_id, $size ) ) |
| 4085 | $intermediate_sizes[] = $intermediate; |
| 4086 | } |
| 4087 | |
| 4088 | if ( is_multisite() ) |
| 4089 | delete_transient( 'dirsize_cache' ); |
| 4090 | |
| 4091 | do_action('delete_attachment', $post_id); |
| 4092 | |
| 4093 | wp_delete_object_term_relationships($post_id, array('category', 'post_tag')); |
| 4094 | wp_delete_object_term_relationships($post_id, get_object_taxonomies($post->post_type)); |
| 4095 | |
| 4096 | delete_metadata( 'post', null, '_thumbnail_id', $post_id, true ); // delete all for any posts. |
| 4097 | |
| 4098 | $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id )); |
| 4099 | foreach ( $comment_ids as $comment_id ) |
| 4100 | wp_delete_comment( $comment_id, true ); |