wp_image_editors filter-hookWP 3.5.0

Filters the list of image editing library classes.

Usage

add_filter( 'wp_image_editors', 'wp_kama_image_editors_filter' );

/**
 * Function for `wp_image_editors` filter-hook.
 * 
 * @param string[] $image_editors Array of available image editor class names.
 *
 * @return string[]
 */
function wp_kama_image_editors_filter( $image_editors ){

	// filter...
	return $image_editors;
}
$image_editors(string[])
Array of available image editor class names.
Default: are 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD'

Changelog

Since 3.5.0 Introduced.

Where the hook is called

_wp_image_editor_choose()
wp_image_editors
wp-includes/media.php 4119
$implementations = apply_filters( 'wp_image_editors', array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' ) );

Where the hook is used in WordPress

Usage not found.