bp_nouveau_after_loop()
Template tag to wrap the after component loop
Source Source
File: bp-templates/bp-nouveau/includes/template-tags.php
function bp_nouveau_after_loop() { $component = bp_current_component(); if ( bp_is_group() ) { $component = bp_current_action(); } /** * Fires after the finish of the component loop. * * This is a variable hook that is dependent on the current component. * * @since 1.2.0 */ do_action( "bp_after_{$component}_loop" ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |