Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created December 30, 2016 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasplevy/e7c68b742a6428fb5f75de7b74c3aeb6 to your computer and use it in GitHub Desktop.
Save thomasplevy/e7c68b742a6428fb5f75de7b74c3aeb6 to your computer and use it in GitHub Desktop.
<?php // don't copy this line
/**
* Customize the number of students per page on the admin reporting table
* @param int $num default (20)
* @return int
*/
function my_results_per_page( $num ) {
return 50;
}
add_filter( 'llms_gradebook_students_per_page', 'my_results_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment