wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_editor_set_quality › WordPress Filter Hooks

Seit6.8.0
Veraltetn/v
apply_filters( 'wp_editor_set_quality', $default_quality, $mime_type, $dims ? $dims : $this->size )
Parameter: (3)
  • () quality Quality level between 1 (low) and 100 (high).
    Erforderlich: Ja
  • () mime_type Image mime type.
    Erforderlich: Ja
  • () size { Dimensions of the image. @type int $width The image width. @type int $height The image height. }
    Erforderlich: Ja
Definiert in:
Codex:

Filters the default image compression quality setting.

Applies only during initial editor instantiation, or when set_quality() is run manually without the `$quality` argument. The WP_Image_Editor::set_quality() method has priority over the filter.




Quellcode

$quality = apply_filters( 'wp_editor_set_quality', $default_quality, $mime_type, $dims ? $dims : $this->size );