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
534      $q['cat'] = (int) $q['cat'];
535      $q['post_type'] = 'attachment';
536      $q['post_status'] = 'any';
537      $q['posts_per_page'] = 15;
538      $post_mime_types = array(     //     array( adj, noun )
539                     'image' => array(__('Images'), __('Manage Images'), __ngettext_noop('Image (%s)', 'Images (%s)')),
540                     'audio' => array(__('Audio'), __('Manage Audio'), __ngettext_noop('Audio (%s)', 'Audio (%s)')),
541                     'video' => array(__('Video'), __('Manage Video'), __ngettext_noop('Video (%s)', 'Video (%s)')),
542                );
543      $post_mime_types = apply_filters('post_mime_types', $post_mime_types);
544
545      $avail_post_mime_types = get_available_post_mime_types('attachment');
546
547      if ( isset($q['post_mime_type']) && !array_intersect( (array) $q['post_mime_type'], array_keys($post_mime_types) ) )
548           unset($q['post_mime_type']);
549
550      wp($q);
551
552      return array($post_mime_types, $avail_post_mime_types);