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
486
487           // Set correct file permissions
488           $stat = stat( dirname( $filename ) );
489           $perms = $stat['mode'] & 0000666; //same permissions as parent folder, strip off the executable bits
490           @ chmod( $filename, $perms );
491
492           /** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
493           return array(
494                'path'      => $filename,
495                'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ),
496                'width'     => $this->size['width'],
497                'height'    => $this->size['height'],
498                'mime-type' => $mime_type,
499           );
500      }
501
502      /**
503       * Streams current image to browser.
504       *