wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_ext2type › WordPress Function

Seit2.5.0
Veraltetn/v
wp_ext2type ( $ext )
Parameter:
  • (string) $ext The extension to search.
    Erforderlich: Ja
Gibt zurück:
  • (string|void) The file type, example: audio, video, document, spreadsheet, etc.
Definiert in:
Codex:

Retrieves the file type based on the extension name.



Quellcode

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;
		}
	}
}