bbp_stats_widget_title

bbp_stats_widget_title

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_stats_widget_title') is found 1 times:

  • /includes/common/widgets.php line 970
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    // Typical WordPress filter
    $settings['title'] = apply_filters( 'widget_title',           $settings['title'], $instance, $this->id_base );
     
    // bbPress widget title filter
    $settings['title'] = apply_filters( 'bbp_stats_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'];
    }