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/branches/1.1@2076 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
25 lines
No EOL
467 B
PHP
25 lines
No EOL
467 B
PHP
<?php do_action( 'bp_before_options_bar' ) ?>
|
|
|
|
<div id="optionsbar">
|
|
|
|
<h3><?php bp_get_options_title() ?></h3>
|
|
|
|
<?php do_action( 'bp_inside_before_options_bar' ) ?>
|
|
|
|
<?php if ( bp_has_options_avatar() ) : ?>
|
|
|
|
<p class="avatar">
|
|
<?php bp_get_options_avatar() ?>
|
|
</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
<ul id="options-nav">
|
|
<?php bp_get_options_nav() ?>
|
|
</ul>
|
|
|
|
<?php do_action( 'bp_inside_after_options_bar' ) ?>
|
|
|
|
</div>
|
|
|
|
<?php do_action( 'bp_after_options_bar' ) ?>
|