ASong2U_Web/wp-content/plugins/buddypress/bp-themes/bp-default/members/single/plugins.php

70 lines
1.5 KiB
PHP

<?php
/**
* BuddyPress - Users Plugins
*
* This is a fallback file that external plugins can use if the template they
* need is not installed in the current theme. Use the actions in this template
* to output everything your plugin needs.
*
* @package BuddyPress
* @subpackage bp-default
*/
?>
<?php get_header( 'buddypress' ); ?>
<div id="content">
<div class="padder">
<?php do_action( 'bp_before_member_plugin_template' ); ?>
<div id="item-header">
<?php locate_template( array( 'members/single/member-header.php' ), true ); ?>
</div><!-- #item-header -->
<div id="item-nav">
<div class="item-list-tabs no-ajax" id="object-nav" role="navigation">
<ul>
<?php bp_get_displayed_user_nav(); ?>
<?php do_action( 'bp_member_options_nav' ); ?>
</ul>
</div>
</div><!-- #item-nav -->
<div id="item-body" role="main">
<?php do_action( 'bp_before_member_body' ); ?>
<div class="item-list-tabs no-ajax" id="subnav">
<ul>
<?php bp_get_options_nav(); ?>
<?php do_action( 'bp_member_plugin_options_nav' ); ?>
</ul>
</div><!-- .item-list-tabs -->
<h3><?php do_action( 'bp_template_title' ); ?></h3>
<?php do_action( 'bp_template_content' ); ?>
<?php do_action( 'bp_after_member_body' ); ?>
</div><!-- #item-body -->
<?php do_action( 'bp_after_member_plugin_template' ); ?>
</div><!-- .padder -->
</div><!-- #content -->
<?php get_sidebar( 'buddypress' ); ?>
<?php get_footer( 'buddypress' ); ?>