26 | | <?php if ( bbp_is_favorites() ) bbp_get_template_part( 'user', 'favorites' ); ?> |
27 | | <?php if ( bbp_is_subscriptions() ) bbp_get_template_part( 'user', 'subscriptions' ); ?> |
28 | | <?php if ( bbp_is_single_user_engagements() ) bbp_get_template_part( 'user', 'engagements' ); ?> |
29 | | <?php if ( bbp_is_single_user_topics() ) bbp_get_template_part( 'user', 'topics-created' ); ?> |
30 | | <?php if ( bbp_is_single_user_replies() ) bbp_get_template_part( 'user', 'replies-created' ); ?> |
31 | | <?php if ( bbp_is_single_user_edit() ) bbp_get_template_part( 'form', 'user-edit' ); ?> |
32 | | <?php if ( bbp_is_single_user_profile() ) bbp_get_template_part( 'user', 'profile' ); ?> |
| 26 | <?php |
| 27 | if ( bbp_is_favorites() ) { |
| 28 | bbp_get_template_part( 'user', 'favorites' ); |
| 29 | } |
| 30 | |
| 31 | if ( bbp_is_subscriptions() ) { |
| 32 | bbp_get_template_part( 'user', 'subscriptions' ); |
| 33 | } |
| 34 | |
| 35 | if ( bbp_is_single_user_engagements() ) { |
| 36 | bbp_get_template_part( 'user', 'engagements' ); |
| 37 | } |
| 38 | |
| 39 | if ( bbp_is_single_user_topics() ) { |
| 40 | bbp_get_template_part( 'user', 'topics-created' ); |
| 41 | } |
| 42 | |
| 43 | if ( bbp_is_single_user_replies() ) { |
| 44 | bbp_get_template_part( 'user', 'replies-created' ); |
| 45 | } |
| 46 | |
| 47 | if ( bbp_is_single_user_edit() ) { |
| 48 | bbp_get_template_part( 'form', 'user-edit' ); |
| 49 | } |
| 50 | |
| 51 | if ( bbp_is_single_user_profile() ) { |
| 52 | bbp_get_template_part( 'user', 'profile' ); |
| 53 | } |
| 54 | ?> |