WP_Image_Editor::supports_mime_type( string $mime_type )

Checks to see if editor supports the mime-type specified.


Description Description

Must be overridden in a sub-class.


Parameters Parameters

$mime_type

(string) (Required)


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: wp-includes/class-wp-image-editor.php

	public static function supports_mime_type( $mime_type ) {
		return false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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