LLMS_Student::get_best_quiz_attempt( $quiz = null,  $lesson = null )

Get the quiz attempt with the highest grade for a given quiz and lesson combination


Description Description


Parameters Parameters

$quiz_id

(int) (Required) WP Post ID of a Quiz

$lesson_id

(int) (Required) WP Post ID of a lesson


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/models/model.llms.student.php

	public function get_best_quiz_attempt( $quiz = null, $lesson = null ) {
		llms_deprecated_function( 'LLMS_Student->get_best_quiz_attempt()', '3.9.0', 'LLMS_Student->quizzes()->get_best_attempt()' );
		return $this->quizzes()->get_best_attempt( $quiz, $lesson );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.





Permalink: