| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying main user profile page. |
| 4 |
* |
| 5 |
* @author ThimPress |
| 6 |
* @package Learnpress/Templates |
| 7 |
* @version 4.0.2 |
| 8 |
*/ |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit(); |
| 11 |
|
| 12 |
if ( ! isset( $profile ) ) { |
| 13 |
return; |
| 14 |
} |
| 15 |
?> |
| 16 |
<div id="learn-press-profile" <?php $profile->main_class(); ?>> |
| 17 |
<div class="lp-content-area"> |
| 18 |
<?php do_action( 'learn-press/user-profile', $profile ); ?> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
<?php |
| 22 |
|