apply_filters( 'edit_posts_per_page', int $posts_per_page , string $post_type )
Filters the number of posts displayed per page when specifically listing “posts”.
Parameters
-
$posts_per_page
int -
Number of posts to be displayed. Default 20.
-
$post_type
string -
The post type.
Source
File: wp-admin/includes/post.php
.
View all references
$posts_per_page = apply_filters( 'edit_posts_per_page', $posts_per_page, $post_type );
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |