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
1223      }
1224
1225      /**
1226       * Filters the number of items to list per page when listing media items.
1227       *
1228       * @since 2.9.0
1229       *
1230       * @param int $media_per_page Number of media to list. Default 20.
1231       */
1232      $q['posts_per_page'] = apply_filters( 'upload_per_page', $media_per_page );
1233
1234      $post_mime_types = get_post_mime_types();
1235      if ( isset( $q['post_mime_type'] ) && ! array_intersect( (array) $q['post_mime_type'], array_keys( $post_mime_types ) ) ) {
1236           unset( $q['post_mime_type'] );
1237      }
1238
1239      foreach ( array_keys( $post_mime_types ) as $type ) {
1240           if ( isset( $q['attachment-filter'] ) && "post_mime_type:$type" == $q['attachment-filter'] ) {
1241                $q['post_mime_type'] = $type;