apply_filters( 'wp_image_editors', string[] $image_editors )

Filters the list of image editing library classes.


Parameters

$image_editors string[]
Array of available image editor class names. Defaults are 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD'.

Top ↑

Source

File: wp-includes/media.php. View all references

$implementations = apply_filters( 'wp_image_editors', array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' ) );

Top ↑

Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.