LLMS_Nav_Menus::__construct()
Constructor.
Contents
Return Return
(void)
Source Source
File: includes/class.llms.nav.menus.php
* @since 7.3.0 Change `render_block_llms/navigation-link` to `render_block` for compatibility with LLMS block visibility.
*
* @return void
*/
public function __construct() {
// Filter menu items on frontend to add real URLs to menu items.
add_filter( 'wp_nav_menu_objects', array( $this, 'filter_nav_items' ) );
// Add meta box to the Appearance -> Menus screen on admin panel.
add_action( 'admin_head-nav-menus.php', array( $this, 'add_metabox' ) );
// Add LifterLMS menu item type section to customizer.
add_filter( 'customize_nav_menu_available_item_types', array( $this, 'customize_add_type' ) );
// Add LifterLMS menu items links to the customizer.
add_filter( 'customize_nav_menu_available_items', array( $this, 'customize_add_items' ), 10, 4 );
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.22.0 | Unknown. |
| 3.14.7 | Introduced. |