bp_nouveau_nav_items()
Checks there are still nav items to display.
Return Return
(bool) True if there are still items to display. False otherwise.
Source Source
File: bp-templates/bp-nouveau/includes/template-tags.php
function bp_nouveau_nav_items() { $bp_nouveau = bp_nouveau(); if ( isset( $bp_nouveau->sorted_nav[ $bp_nouveau->current_nav_index ] ) ) { return true; } $bp_nouveau->current_nav_index = 0; unset( $bp_nouveau->current_nav_item ); return false; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |