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