Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: upload_per_page

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
1236      }
1237
1238      /**
1239       * Filters the number of items to list per page when listing media items.
1240       *
1241       * @since 2.9.0
1242       *
1243       * @param int $media_per_page Number of media to list. Default 20.
1244       */
1245      $q['posts_per_page'] = apply_filters( 'upload_per_page', $media_per_page );
1246
1247      $post_mime_types = get_post_mime_types();
1248      if ( isset( $q['post_mime_type'] ) && ! array_intersect( (array) $q['post_mime_type'], array_keys( $post_mime_types ) ) ) {
1249           unset( $q['post_mime_type'] );
1250      }
1251
1252      foreach ( array_keys( $post_mime_types ) as $type ) {
1253           if ( isset( $q['attachment-filter'] ) && "post_mime_type:$type" === $q['attachment-filter'] ) {
1254                $q['post_mime_type'] = $type;