Description
Filters the number of results to show in the stats/tracking table shown at the bottom of the user profile. Similar to wpmemstat_max_per_page.
The plugin default is 5.
Value must be a number.
Usage
add_filter( 'wpmemstat_max_per_user', 'user_profile_stats_number' ); function user_profile_stats_number( $num ) { // return value must be a number return 10; }
See a list of all filter and action hooks