Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: media_upload_mime_type_links

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
2043
2044      if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
2045           continue;
2046
2047      if ( isset($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
2048           $class = ' class="current"';
2049
2050      $type_links[] = "<li><a href='" . esc_url(add_query_arg(array('post_mime_type'=>$mime_type, 'paged'=>false))) . "'$class>" . sprintf( translate_nooped_plural( $label[2], $num_posts[$mime_type] ), "<span id='$mime_type-counter'>" . number_format_i18n( $num_posts[$mime_type] ) . '</span>') . '</a>';
2051 }
2052 echo implode(' | </li>', apply_filters( 'media_upload_mime_type_links', $type_links ) ) . '</li>';
2053 unset($type_links);
2054 ?>
2055 </ul>
2056
2057 <div class="tablenav">
2058
2059 <?php
2060 $page_links = paginate_links( array(
2061      'base' => add_query_arg( 'paged', '%#%' ),