mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/default-member-theme@1113 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
40 lines
No EOL
715 B
PHP
40 lines
No EOL
715 B
PHP
<?php if ( function_exists('bp_get_options_class') ) : ?>
|
|
|
|
<div id="optionsbar"<?php bp_get_options_class() ?>>
|
|
|
|
<?php else: ?>
|
|
|
|
<div id="optionsbar">
|
|
|
|
<?php endif; ?>
|
|
|
|
<h3><?php bp_get_options_title() ?></h3>
|
|
|
|
<?php do_action( 'bp_options_bar_before' ) ?>
|
|
|
|
<?php if ( bp_has_options_avatar() ) : ?>
|
|
|
|
<p class="avatar">
|
|
<?php bp_get_options_avatar() ?>
|
|
</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ( function_exists('bp_has_icons') ) : ?>
|
|
|
|
<ul id="options-nav"<?php bp_has_icons() ?>>
|
|
|
|
<?php else: ?>
|
|
|
|
<ul id="options-nav">
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php bp_get_options_nav() ?>
|
|
</ul>
|
|
|
|
<?php do_action( 'bp_options_bar_after' ) ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|