How to get all quizzes list?
-
Hello,
I’m trying to display all quizzes of all courses on some custom page.
https://www.screencast.com/t/cgZBIiEb
I’m using the following strategy:
function get_all_quizzes( $user ) { $courses = $user->get( 'courses' ); // here I collect all quizzes return $quizzes; }
I faced a memory issue when the total questions in all quizzes reached 1,000. I discovered that it is because $user->get( ‘courses’ ) tries to prepare all questions and all answers for all quizzes.
What is an alternative strategy to get all quizzes list?
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to get all quizzes list?’ is closed to new replies.