Description
Filters the number of results to show in the stats/tracking dashboard table (for both all stats and specific user stats). Similar to wpmemstat_max_per_user.
The plugin default is 25.
Value must be a number.
Usage
add_filter( 'wpmemstat_max_per_page', 'my_stats_page_number' ); function my_stats_page_number( $num ) { // return value must be a number return 40; }