Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_editor_set_quality

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
232                 * manually without the `$quality` argument.
233                 *
234                 * The WP_Image_Editor::set_quality() method has priority over the filter.
235                 *
236                 * @since 3.5.0
237                 *
238                 * @param int    $quality   Quality level between 1 (low) and 100 (high).
239                 * @param string $mime_type Image mime type.
240                 */
241                $quality = apply_filters( 'wp_editor_set_quality', $this->default_quality, $this->mime_type );
242
243                if ( 'image/jpeg' === $this->mime_type ) {
244                     /**
245                      * Filters the JPEG compression quality for backward-compatibility.
246                      *
247                      * Applies only during initial editor instantiation, or when set_quality() is run
248                      * manually without the `$quality` argument.
249                      *
250                      * The WP_Image_Editor::set_quality() method has priority over the filter.