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
449           /**
450            * Filters the name of the saved image file.
451            *
452            * @since 2.6.0
453            *
454            * @param string $filename Name of the file.
455            */
456           return array(
457                'path'      => $filename,
458                'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ),
459                'width'     => $this->size['width'],
460                'height'    => $this->size['height'],
461                'mime-type' => $mime_type,
462           );
463      }
464
465      /**
466       * Returns stream of current image.
467       *