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

159
160
161
162
163
164
165
166
167
168
169
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.