Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_make_intermediate_size

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
630
631           // Set correct file permissions
632           $stat = stat( dirname( $filename ) );
633           $perms = $stat['mode'] & 0000666; //same permissions as parent folder, strip off the executable bits
634           @ chmod( $filename, $perms );
635
636           /** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
637           return array(
638                'path'      => $filename,
639                'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ),
640                'width'     => $this->size['width'],
641                'height'    => $this->size['height'],
642                'mime-type' => $mime_type,
643           );
644      }
645
646      /**
647       * Streams current image to browser.
648       *