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
1040           $media_per_page = 20;
1041
1042      /**
1043       * Filter the number of items to list per page when listing media items.
1044       *
1045       * @since 2.9.0
1046       *
1047       * @param int $media_per_page Number of media to list. Default 20.
1048       */
1049      $q['posts_per_page'] = apply_filters( 'upload_per_page', $media_per_page );
1050
1051      $post_mime_types = get_post_mime_types();
1052      $avail_post_mime_types = get_available_post_mime_types('attachment');
1053
1054      if ( isset($q['post_mime_type']) && !array_intersect( (array) $q['post_mime_type'], array_keys($post_mime_types) ) )
1055           unset($q['post_mime_type']);
1056
1057      if ( isset($q['detached']) )
1058           $q['post_parent'] = 0;