llms_get_completable_taxonomies()
Retrieve an array of taxonomies which can be completed by students
Return Return
(string[])
Source Source
File: includes/llms.functions.core.php
*/ function llms_get_completable_taxonomies() { /** * Filter the list of taxonomies which can be completed by students. * * @since 4.2.0 * * @param string[] $taxonomies Taxonomy names. */ return apply_filters( 'llms_completable_taxonomies', array( 'course_track' ) );
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |