LLMS_Install::get_difficulties()
Retrieve the default difficulty terms that should be created on a fresh install
Return Return
(array)
Source Source
File: includes/class.llms.install.php
public static function get_difficulties() {
return apply_filters(
'llms_install_create_difficulties',
array(
_x( 'Beginner', 'course difficulty name', 'lifterlms' ),
_x( 'Intermediate', 'course difficulty name', 'lifterlms' ),
_x( 'Advanced', 'course difficulty name', 'lifterlms' ),
)
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.3.1 | Introduced. |