bbp_search_widget_options

bbp_search_widget_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_search_widget_options') is found 1 times:

  • /includes/common/widgets.php line 359
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    *
     * @since 2.3.0 bbPress (r4579)
     */
    public function __construct() {
        $widget_ops = apply_filters( 'bbp_search_widget_options', array(
            'classname'                   => 'widget_display_search',
            'description'                 => esc_html__( 'The bbPress forum search form.', 'bbpress' ),
            'customize_selective_refresh' => true
        ) );
     
        parent::__construct( false, esc_html__( '(bbPress) Forum Search Form', 'bbpress' ), $widget_ops );