wp_get_ext_types() – Retrieves the list of common file extensions and their types.

You appear to be a bot. Output may be restricted

Description

Retrieves the list of common file extensions and their types.

Usage

$array[] = wp_get_ext_types();

Parameters

Returns

array[] Multi-dimensional array of file extensions types keyed by the type of file.

Source

File name: wordpress/wp-includes/functions.php
Lines:

1 to 26 of 26
function wp_get_ext_types() {

  
/**
 * Filters file type based on the extension name.
 *
 * @since 2.5.0
 *
 * @see wp_ext2type()
 *
 * @param array[] $ext2type Multi-dimensional array of file extensions types keyed by the type of file.
 */
  return apply_filters(
    'ext2type',
    array(
      'image'       => array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico', 'heic', 'webp' ),
      'audio'       => array( 'aac', 'ac3', 'aif', 'aiff', 'flac', 'm3a', 'm4a', 'm4b', 'mka', 'mp1', 'mp2', 'mp3', 'ogg', 'oga', 'ram', 'wav', 'wma' ),
      'video'       => array( '3g2', '3gp', '3gpp', 'asf', 'avi', 'divx', 'dv', 'flv', 'm4v', 'mkv', 'mov', 'mp4', 'mpeg', 'mpg', 'mpv', 'ogm', 'ogv', 'qt', 'rm', 'vob', 'wmv' ),
      'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt', 'pages', 'pdf', 'xps', 'oxps', 'rtf', 'wp', 'wpd', 'psd', 'xcf' ),
      'spreadsheet' => array( 'numbers', 'ods', 'xls', 'xlsx', 'xlsm', 'xlsb' ),
      'interactive' => array( 'swf', 'key', 'ppt', 'pptx', 'pptm', 'pps', 'ppsx', 'ppsm', 'sldx', 'sldm', 'odp' ),
      'text'        => array( 'asc', 'csv', 'tsv', 'txt' ),
      'archive'     => array( 'bz2', 'cab', 'dmg', 'gz', 'rar', 'sea', 'sit', 'sqx', 'tar', 'tgz', 'zip', '7z' ),
      'code'        => array( 'css', 'htm', 'html', 'php', 'js' ),
    )
  );
}
 

 View on GitHub View on Trac