| Current Path : /home/frekansk/public_html/wp-content/plugins/learnpress/templates/profile/header/ |
| Current File : /home/frekansk/public_html/wp-content/plugins/learnpress/templates/profile/header/user-bio.php |
<?php
/**
* Template for displaying profile user bio.
*
* @author ThimPress
* @package LearnPress/Templates
*/
defined( 'ABSPATH' ) || exit;
$profile = LP_Profile::instance();
$user = $profile->get_user();
if ( ! isset( $user ) ) {
return;
}
$bio = $user->get_description();
?>
<?php if ( $bio ) : ?>
<div class="lp-profile-user-bio">
<?php echo wpautop( $bio ); ?>
</div>
<?php endif; ?>