Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Template Tags Suggestion

In case someone is interested, you can then use the following function for any of these types of functions to make a select ddm which takes you to the right url when selected:

function mrn_header_tabs($type){
$tabs = call_user_func("bp_get_{$type}_header_tabs");
?>
<select onchange="window.location = this.value;">
<?php foreach($tabs as $tab) : ?>
<option <?php if ( $tab['is_current'] ) : ?> selected="selected"<?php endif; ?> value="<?php echo $tab['link'] ?>/"><?php echo $tab['text'] ?></option>
<?php endforeach; ?>
</select>
<?php
}

Skip to toolbar