Esempio n. 1
0
			<div class="item-list-tabs no-ajax" id="subnav">
				<ul>
					<li class="feed"><a href="<?php 
bp_directory_links_feed_link();
?>
" title="RSS Feed"><?php 
_e('RSS', 'buddypress');
?>
</a></li>
					<?php 
do_action('bp_links_syndication_options');
?>

					<?php 
bp_links_dtheme_link_category_filter_options_list();
?>
				</ul>
			</div><!-- .item-list-tabs -->

			<div id="links-dir-list" class="links dir-list">
				<?php 
bp_links_locate_template(array('links-loop.php'), true);
?>
			</div><!-- #links-dir-list -->

			<?php 
do_action('bp_directory_links_content');
?>

			<?php 
Esempio n. 2
0
/**
 * Augment profile Links page sub-navigation
 */
function bp_links_dtheme_personal_links_subnav()
{
    // are we the current component?
    if (BP_LINKS_SLUG === bp_current_component()) {
        // yep, spit out special subnav items
        bp_links_dtheme_link_order_options_list();
        bp_links_dtheme_link_category_filter_options_list();
    }
}
Esempio n. 3
0
/**
 * Augment profile Links page sub-navigation
 */
function bp_links_dtheme_personal_links_subnav($html)
{
    $html .= bp_links_dtheme_link_order_options_list();
    $html .= bp_links_dtheme_link_category_filter_options_list();
    return $html;
}