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
     */
    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 );
    }
    
    /**