WP_Image_Editor::test() public WP 3.5.0
Checks to see if current environment supports the editor chosen. Must be overridden in a subclass.
{} It's a 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. |
Code of WP_Image_Editor::test() WP Image Editor::test WP 5.6
public static function test( $args = array() ) {
return false;
}