Control the number of displayed posts.
Parameters
- $count
string Number of Posts displayed in the Top Posts widget. Default is 10.
Changelog
- Introduced in Jetpack 3.3.0
How to use this hook
Notes
You can use this filter to change the number of posts being displayed in the Top Posts & Pages Widget:
function jeherve_more_top_posts() {
return '15';
}
add_filter( 'jetpack_top_posts_widget_count', 'jeherve_more_top_posts' );