761 | | $src_file = $icon_dir . '/' . wp_basename( $src ); |
762 | | @list( $width, $height ) = getimagesize( $src_file ); |
| 762 | $dirs = apply_filters( 'icon_dirs', array( $icon_dir => $icon_dir_uri ) ); |
| 763 | |
| 764 | $base_src = wp_basename( $src ); |
| 765 | while ( $dirs ) { |
| 766 | $keys = array_keys( $dirs ); |
| 767 | $dir = array_shift( $keys ); |
| 768 | $uri = array_shift( $dirs ); |
| 769 | $src_file = $dir . '/' . $base_src; |
| 770 | @list( $width, $height ) = getimagesize( $src_file ); |
| 771 | if ( $width && $height ) { |
| 772 | break; |
| 773 | } |
| 774 | } |