bp_nouveau_after_activity_directory_content()

After Activity’s directory content legacy do_action hooks wrapper

Description

Source

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

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
function bp_nouveau_after_activity_directory_content() {
    /**
     * Fires after the display of the activity list.
     *
     * @since BuddyPress 1.5.0
     */
    do_action( 'bp_after_directory_activity_list' );
 
    /**
     * Fires inside and displays the activity directory display content.
     */
    do_action( 'bp_directory_activity_content' );
 
    /**
     * Fires after the activity directory display content.
     *
     * @since BuddyPress 1.2.0
     */
    do_action( 'bp_after_directory_activity_content' );
 
    /**
     * Fires after the activity directory listing.
     *
     * @since BuddyPress 1.5.0
     */
    do_action( 'bp_after_directory_activity' );
 
    bp_get_template_part( 'common/js-templates/activity/comments' );
}

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.