ASTRA_Ext_LifterLMS_Markup::astra_header_lifterlms()

Add LifterLMS icon markup


Description


Return

(void)


Source

File: addons/lifterlms/classes/class-astra-ext-lifterlms-markup.php

		public static function astra_header_lifterlms() {

			if ( is_user_logged_in() ) :
				$my_account_permalink = get_permalink( get_option( 'lifterlms_myaccount_page_id' ) );
				?>
				<div class="main-header-log-out">
					<a class="llms-profile-link" href="<?php echo esc_url_raw( apply_filters( 'astra_llms_profile_link', $my_account_permalink ) ); ?>"><?php echo get_avatar( get_current_user_id(), 45 ); ?></a>
				</div>
				<?php
			endif;
		}

Changelog

Changelog
Version Description
1.0.0 Introduced.


User Contributed Notes

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