Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: mime_types

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2162       *
2163       * This filter should be used to add, not remove, mime types. To remove
2164       * mime types, use the 'upload_mimes' filter.
2165       *
2166       * @since 3.5.0
2167       *
2168       * @param array $wp_get_mime_types Mime types keyed by the file extension regex
2169       *                                 corresponding to those types.
2170       */
2171      return apply_filters( 'mime_types', array(
2172      // Image formats.
2173      'jpg|jpeg|jpe' => 'image/jpeg',
2174      'gif' => 'image/gif',
2175      'png' => 'image/png',
2176      'bmp' => 'image/bmp',
2177      'tif|tiff' => 'image/tiff',
2178      'ico' => 'image/x-icon',
2179      // Video formats.
2180      'asf|asx' => 'video/x-ms-asf',