bbp_get_forum_subscribers

bbp_get_forum_subscribers

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_forum_subscribers') is found 1 times:

  • /includes/users/engagements.php line 1109
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    function bbp_get_forum_subscribers( $forum_id = 0 ) {
        $users = bbp_get_users_for_object( $forum_id, '_bbp_subscription' );
     
        // Filter & return
        return (array) apply_filters( 'bbp_get_forum_subscribers', $users, $forum_id );
    }
     
    /**
     * Get the users who have subscribed to the topic
     *
     * @since 2.0.0 bbPress (r2668)