| 1 |
<?php |
| 2 |
/** |
| 3 |
* Single User Content Part |
| 4 |
* |
| 5 |
* @package bbPress |
| 6 |
* @subpackage Theme |
| 7 |
*/ |
| 8 |
|
| 9 |
// Exit if accessed directly |
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
?> |
| 12 |
|
| 13 |
<div id="bbpress-forums" class="bbpress-wrapper"> |
| 14 |
|
| 15 |
<?php do_action( 'bbp_template_notices' ); ?> |
| 16 |
|
| 17 |
<?php do_action( 'bbp_template_before_user_wrapper' ); ?> |
| 18 |
|
| 19 |
<div id="bbp-user-wrapper" class="row"> |
| 20 |
|
| 21 |
<?php bbp_get_template_part( 'user', 'details' ); ?> |
| 22 |
|
| 23 |
<div class="column-md-9"> |
| 24 |
<div class="shadow-lg p-md-5 p-3 mx-3 bbp-user-body"> |
| 25 |
<?php if ( bbp_is_favorites() ) bbp_get_template_part( 'user', 'favorites' ); ?> |
| 26 |
<?php if ( bbp_is_subscriptions() ) bbp_get_template_part( 'user', 'subscriptions' ); ?> |
| 27 |
<?php if ( bbp_is_single_user_engagements() ) bbp_get_template_part( 'user', 'engagements' ); ?> |
| 28 |
<?php if ( bbp_is_single_user_topics() ) bbp_get_template_part( 'user', 'topics-created' ); ?> |
| 29 |
<?php if ( bbp_is_single_user_replies() ) bbp_get_template_part( 'user', 'replies-created' ); ?> |
| 30 |
<?php if ( bbp_is_single_user_edit() ) bbp_get_template_part( 'form', 'user-edit' ); ?> |
| 31 |
<?php if ( bbp_is_single_user_profile() ) bbp_get_template_part( 'user', 'profile' ); ?> |
| 32 |
</div> |
| 33 |
</div> |
| 34 |
</div> |
| 35 |
|
| 36 |
<?php do_action( 'bbp_template_after_user_wrapper' ); ?> |
| 37 |
|
| 38 |
</div> |
| 39 |
|