LLMS_Quiz_Data::recent_events( $args = array() )

Retrieve recent LLMS_User_Postmeta for the quiz.


Description Description

This overrides the LLMS_Abstract_Post_Data method.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/class.llms.quiz.data.php

	public function recent_events( $args = array() ) {

		$query_args = wp_parse_args(
			$args,
			array(
				'types' => array(),
			)
		);

		return parent::recent_events( $query_args );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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