# learnpress/4.3.9/templates/profile/header/user-bio.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9. 25 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9/code/templates/profile/header/user-bio.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9/raw/templates/profile/header/user-bio.php
- Modified: 2026-06-08T02:53:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.3.9/code/templates/profile/header/user-bio.php#L10-L20`.

```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; ?>

```
