WP_Image_Editor::supports_mime_type

Advertisement

Summery Summery

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

Syntax Syntax

WP_Image_Editor::supports_mime_type( string $mime_type )

Description Description

Must be overridden in a subclass.

Parameters Parameters

$mime_type

(Required)

Return Return

(bool)

Source Source

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
3.5.0 Introduced.

Advertisement

Leave a Reply