WP_Image_Editor::test()public staticWP 3.5.0

Checks to see if current environment supports the editor chosen. Must be overridden in a subclass.

Method of the class: WP_Image_Editor{}

No Hooks.

Return

true|false.

Usage

$result = WP_Image_Editor::test( $args );
$args(array)
-
Default: array()

Changelog

Since 3.5.0 Introduced.

WP_Image_Editor::test() code WP 6.5.2

public static function test( $args = array() ) {
	return false;
}