bbp_get_forum_statuses

bbp_get_forum_statuses

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_forum_statuses') is found 1 times:

  • /includes/forums/functions.php line 2080
    2076
    2077
    2078
    2079
    2080
    2081
    2082
    2083
    2084
    2085
    2086
    */
    function bbp_get_forum_statuses( $forum_id = 0 ) {
     
        // Filter & return
        return (array) apply_filters( 'bbp_get_forum_statuses', array(
            'open'   => _x( 'Open',    'Open the forum''bbpress' ),
            'closed' => _x( 'Closed''Close the forum', 'bbpress' )
        ), $forum_id );
    }
     
    /**