Changeset 28347
- Timestamp:
- 05/08/2014 08:15:48 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r28302 r28347 950 950 $order = 'ASC'; 951 951 952 $per_page = 'edit_' . $post_type . '_per_page';952 $per_page = "edit_{$post_type}_per_page"; 953 953 $posts_per_page = (int) get_user_option( $per_page ); 954 954 if ( empty( $posts_per_page ) || $posts_per_page < 1 ) … … 958 958 * Filter the number of items per page to show for a specific 'per_page' type. 959 959 * 960 * The dynamic hook name, $per_page, refers to a hook name comprised of the post type, 961 * preceded by 'edit_', and succeeded by '_per_page', e.g. 'edit_$post_type_per_page'. 960 * The dynamic portion of the hook name, $post_type, refers to the post type. 962 961 * 963 962 * Some examples of filter hooks generated here include: 'edit_attachment_per_page', … … 966 965 * @since 3.0.0 967 966 * 968 * @param int $posts_per_page Number of posts to display per page for the given 'per_page'967 * @param int $posts_per_page Number of posts to display per page for the given post 969 968 * type. Default 20. 970 969 */ 971 $posts_per_page = apply_filters( $per_page, $posts_per_page );970 $posts_per_page = apply_filters( "edit_{$post_type}_per_page", $posts_per_page ); 972 971 973 972 /** … … 976 975 * @since 2.8.0 977 976 * 978 * @param int $p er_pageNumber of posts to be displayed. Default 20.979 * @param string $post_type The post type.977 * @param int $posts_per_page Number of posts to be displayed. Default 20. 978 * @param string $post_type The post type. 980 979 */ 981 980 $posts_per_page = apply_filters( 'edit_posts_per_page', $posts_per_page, $post_type );
Note: See TracChangeset
for help on using the changeset viewer.