bp_nouveau_after_loop()

Template tag to wrap the after component loop

Description

Source

File: bp-templates/bp-nouveau/includes/template-tags.php

361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
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 BuddyPress 1.2.0
     */
    do_action( "bp_after_{$component}_loop" );
}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.