bbp_default_styles

bbp_default_styles

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_default_styles') is found 1 times:

  • /templates/default/bbpress-functions.php line 138
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
            );
        }
     
        // Get and filter the bbp-default style
        $styles = apply_filters( 'bbp_default_styles', $defaults );
     
        // Enqueue the styles
        foreach ( $styles as $handle => $attributes ) {
            bbp_enqueue_style( $handle, $attributes['file'], $attributes['dependencies'], $this->version );
        }
    }