WP_REST_Attachments_Controller::get_media_types()protectedWP 4.7.0

Retrieves the supported media types.

Media types are considered the MIME type category.

Method of the class: WP_REST_Attachments_Controller{}

No Hooks.

Return

Array. Array of supported media types.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_media_types();

Changelog

Since 4.7.0 Introduced.

WP_REST_Attachments_Controller::get_media_types() code WP 6.5.2

protected function get_media_types() {
	$media_types = array();

	foreach ( get_allowed_mime_types() as $mime_type ) {
		$parts = explode( '/', $mime_type );

		if ( ! isset( $media_types[ $parts[0] ] ) ) {
			$media_types[ $parts[0] ] = array();
		}

		$media_types[ $parts[0] ][] = $mime_type;
	}

	return $media_types;
}