| 1 |
<?php |
| 2 |
/** |
| 3 |
* Hello Elementor Single User Template |
| 4 |
* |
| 5 |
* @package Forumax |
| 6 |
*/ |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
|
| 10 |
get_header(); |
| 11 |
?> |
| 12 |
|
| 13 |
<main id="frmx-user-profile" class="frmx-user-profile"> |
| 14 |
<div class="frmx-container"> |
| 15 |
|
| 16 |
<?php do_action( 'bbp_before_main_content' ); ?> |
| 17 |
|
| 18 |
<?php do_action( 'bbp_template_notices' ); ?> |
| 19 |
|
| 20 |
<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user"> |
| 21 |
<div class="entry-content"> |
| 22 |
<?php bbp_get_template_part( 'content', 'single-user' ); ?> |
| 23 |
</div> |
| 24 |
</div> |
| 25 |
|
| 26 |
<?php do_action( 'bbp_after_main_content' ); ?> |
| 27 |
|
| 28 |
</div> |
| 29 |
</main> |
| 30 |
|
| 31 |
<?php get_footer(); ?> |