bbp_search_widget_title

bbp_search_widget_title

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_search_widget_title') is found 1 times:

  • /includes/common/widgets.php line 396
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    // Typical WordPress filter
    $settings['title'] = apply_filters( 'widget_title',            $settings['title'], $instance, $this->id_base );
     
    // bbPress filter
    $settings['title'] = apply_filters( 'bbp_search_widget_title', $settings['title'], $instance, $this->id_base );
     
    echo $args['before_widget'];
     
    if ( ! empty( $settings['title'] ) ) {
        echo $args['before_title'] . $settings['title'] . $args['after_title'];
    }