ASTRA_Ext_LearnDash_Markup::__construct()
Constructor
Description
Source
File: addons/learndash/classes/class-astra-ext-learndash-markup.php
public function __construct() {
add_action( 'wp', array( $this, 'llms_learning' ) );
add_action( 'body_class', array( $this, 'body_class' ) );
add_action( 'astra_get_css_files', array( $this, 'add_styles' ) );
// Add LearnDash icon in Menu.
add_action( 'astra_masthead_content', array( $this, 'learndash_profile_link_enabled' ) );
// Shortcode.
add_shortcode( 'astra_learndash_profile_link', array( $this, 'astra_learndash_profile_link_callback' ) );
}
Expand full source code Collapse full source code View on Trac