Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: icon_dir

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
958      $image = image_downsize( $attachment_id, $size );
959      if ( ! $image ) {
960           $src = false;
961
962           if ( $icon ) {
963                $src = wp_mime_type_icon( $attachment_id );
964
965                if ( $src ) {
966                     /** This filter is documented in wp-includes/post.php */
967                     $icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/media' );
968
969                     $src_file               = $icon_dir . '/' . wp_basename( $src );
970                     list( $width, $height ) = wp_getimagesize( $src_file );
971                }
972           }
973
974           if ( $src && $width && $height ) {
975                $image = array( $src, $width, $height, false );
976           }