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
1951
1952      if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
1953           continue;
1954
1955      if ( isset($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
1956           $class = ' class="current"';
1957
1958      $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>';
1959 }
1960 echo implode(' | </li>', apply_filters( 'media_upload_mime_type_links', $type_links ) ) . '</li>';
1961 unset($type_links);
1962 ?>
1963 </ul>
1964
1965 <div class="tablenav">
1966
1967 <?php
1968 $page_links = paginate_links( array(
1969      'base' => add_query_arg( 'paged', '%#%' ),