LifterLMS::init()
Init LifterLMS when WordPress Initialises.
Return Return
(void)
Source Source
File: class-lifterlms.php
* @return void
*/
public function init() {
do_action( 'before_lifterlms_init' );
$this->block_templates();
$this->engagements();
$this->notifications();
do_action( 'lifterlms_init' );
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.8.0 | Initialize block templates. |
| 4.13.0 | Remove site staging/duplicate check and run only on admin_init. |
| 4.12.0 | Check site staging/duplicate status & trigger associated actions. |
| 4.0.0 | Don't initialize removed LLMS_Person() class. |
| 3.21.1 | Unknown. |
| 1.0.0 | Introduced. |