ASong2U_Web/wp-content/themes/huddle/members/single/profile.php

38 lines
936 B
PHP

<?php if ( bp_is_my_profile() ) : ?>
<div class="item-list-tabs no-ajax" id="subnav" role="navigation">
<ul>
<?php bp_get_options_nav(); ?>
</ul>
</div><!-- .item-list-tabs -->
<?php endif; ?>
<?php do_action( 'bp_before_profile_content' ); ?>
<div class="profile" role="main">
<?php
// Profile Edit
if ( bp_is_current_action( 'edit' ) )
locate_template( array( 'members/single/profile/edit.php' ), true );
// Change Avatar
elseif ( bp_is_current_action( 'change-avatar' ) )
locate_template( array( 'members/single/profile/change-avatar.php' ), true );
// Display XProfile
elseif ( bp_is_active( 'xprofile' ) )
locate_template( array( 'members/single/profile/profile-loop.php' ), true );
// Display WordPress profile (fallback)
else
locate_template( array( 'members/single/profile/profile-wp.php' ), true );
?>
</div><!-- .profile -->
<?php do_action( 'bp_after_profile_content' ); ?>