1
0
Fork 0
mirror of https://github.com/buddypress/buddypress.git synced 2026-07-22 20:56:55 +08:00
buddypress/1.0b1/buddypress-member/optionsbar.php
Andy Peatling 35fdd5804c Tagging 1.0b1 member theme.
git-svn-id: https://buddypress.svn.wordpress.org/tags/default-member-theme@772 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-12-15 23:27:27 +00:00

26 lines
No EOL
585 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 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>
<div class="clear"></div>
</div>