llms_get_question_types()
Retrieve question types.
Description Description
See LLMS_Question_Types class for actual loading of core question types.
Return Return
(array)
Source Source
File: includes/functions/llms.functions.quiz.php
function llms_get_question_types() {
/**
* Filters the question types.
*
* @since 3.16.0
*
* @param array $question_types Question types.
*/
return apply_filters( 'llms_get_question_types', array() );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.16.0 | Introduced. |