bbp_forums_widget_options

bbp_forums_widget_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_forums_widget_options') is found 1 times:

  • /includes/common/widgets.php line 476
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    *
     * @since 2.0.0 bbPress (r2653)
     */
    public function __construct() {
        $widget_ops = apply_filters( 'bbp_forums_widget_options', array(
            'classname'                   => 'widget_display_forums',
            'description'                 => esc_html__( 'A list of forums with an option to set the parent.', 'bbpress' ),
            'customize_selective_refresh' => true
        ) );
     
        parent::__construct( false, esc_html__( '(bbPress) Forums List', 'bbpress' ), $widget_ops );