Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_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
2118  * @return array
2119  */
2120 function get_post_mime_types() {
2121      $post_mime_types = array(     //     array( adj, noun )
2122           'image' => array(__('Images'), __('Manage Images'), _n_noop('Image <span class="count">(%s)</span>', 'Images <span class="count">(%s)</span>')),
2123           'audio' => array(__('Audio'), __('Manage Audio'), _n_noop('Audio <span class="count">(%s)</span>', 'Audio <span class="count">(%s)</span>')),
2124           'video' => array(__('Video'), __('Manage Video'), _n_noop('Video <span class="count">(%s)</span>', 'Video <span class="count">(%s)</span>')),
2125      );
2126
2127      return apply_filters('post_mime_types', $post_mime_types);
2128 }
2129
2130 /**
2131  * Check a MIME-Type against a list.
2132  *
2133  * If the wildcard_mime_types parameter is a string, it must be comma separated
2134  * list. If the real_mime_types is a string, it is also comma separated to
2135  * create the list.
2136  *