wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_ext2type › WordPress Function

Since2.5.0
Deprecatedn/a
wp_ext2type ( $ext )
Parameters:
  • (string) $ext The extension to search.
    Required: Yes
Returns:
  • (string|void) The file type, example: audio, video, document, spreadsheet, etc.
Defined at:
Codex:

Retrieves the file type based on the extension name.



Source

function wp_ext2type( $ext ) {
	$ext = strtolower( $ext );

	$ext2type = wp_get_ext_types();
	foreach ( $ext2type as $type => $exts ) {
		if ( in_array( $ext, $exts, true ) ) {
			return $type;
		}
	}
}