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

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

- Page: https://pluginprobe.com/plugins/learnpress/4.4.8/code/templates/profile/header/user-bio.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.8/raw/templates/profile/header/user-bio.php
- Modified: 2026-09-18T11:22:50+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.4.8/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; ?>

```
