LLMS_Admin_Menus::display_admin_menu_late()
Add items to the admin menu with a later priority
Return Return
(void)
Source Source
File: includes/admin/class.llms.admin.menus.php
public function display_admin_menu_late() {
/**
* Disable the display and output of LifterLMS Add-ons screen.
*
* @since Unknown
*
* @param boolean $display Whether or not to display the screen. Defaults to `false` which shows the screen.
*/
if ( apply_filters( 'lifterlms_disable_addons_screen', false ) ) {
return;
}
add_submenu_page( 'lifterlms', __( 'LifterLMS Add-ons, Courses, and Resources', 'lifterlms' ), __( 'Add-ons & more', 'lifterlms' ), 'manage_lifterlms', 'llms-add-ons', array( $this, 'add_ons_page_init' ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.5.0 | |
| 3.22.0 | Introduced. |