Skip to content

Instantly share code, notes, and snippets.

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/7738d4d6f97880a1a5adcfc1f2003b3a to your computer and use it in GitHub Desktop.
Save thomasplevy/7738d4d6f97880a1a5adcfc1f2003b3a to your computer and use it in GitHub Desktop.
<?php // don't copy this line
/**
* Customize the number of courses per page on the admin reporting table for a student's course list
* @param int $num default (20)
* @return int
*/
function my_results_per_page( $num ) {
return 50;
}
add_filter( 'llms_gradebook_student-courses_per_page', 'my_results_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment