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
1977
1978      if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
1979           continue;
1980
1981      if ( isset($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
1982           $class = ' class="current"';
1983
1984      $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>';
1985 }
1986 echo implode(' | </li>', apply_filters( 'media_upload_mime_type_links', $type_links ) ) . '</li>';
1987 unset($type_links);
1988 ?>
1989 </ul>
1990
1991 <div class="tablenav">
1992
1993 <?php
1994 $page_links = paginate_links( array(
1995      'base' => add_query_arg( 'paged', '%#%' ),