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
978      $image = image_downsize( $attachment_id, $size );
979      if ( ! $image ) {
980           $src = false;
981
982           if ( $icon ) {
983                $src = wp_mime_type_icon( $attachment_id, '.svg' );
984
985                if ( $src ) {
986                     /** This filter is documented in wp-includes/post.php */
987                     $icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/media' );
988
989                     $src_file = $icon_dir . '/' . wp_basename( $src );
990
991                     list( $width, $height ) = wp_getimagesize( $src_file );
992
993                     $ext = strtolower( substr( $src_file, -4 ) );
994
995                     if ( '.svg' === $ext ) {
996                          // SVG does not have true dimensions, so this assigns width and height directly.