bbp_update_forum_last_active_id

bbp_update_forum_last_active_id

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_update_forum_last_active_id') is found 1 times:

  • /includes/forums/functions.php line 1763
    1760
    1761
    1762
    1763
    1764
    1765
    1766
    1767
    1768
    1769
        update_post_meta( $forum_id, '_bbp_last_active_id', $active_id );
     
        // Filter & return
        return (int) apply_filters( 'bbp_update_forum_last_active_id', $active_id, $forum_id );
    }
     
    /**
     * Update the forums last active date/time (aka freshness)
     *
     * @since 2.0.0 bbPress (r2680)