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' ) );
		}


User Contributed Notes

You must log in before being able to contribute a note or feedback.