bbp_stats_widget_options

bbp_stats_widget_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_stats_widget_options') is found 1 times:

  • /includes/common/widgets.php line 935
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    *
     * @since 2.3.0 bbPress (r4509)
     */
    public function __construct() {
        $widget_ops = apply_filters( 'bbp_stats_widget_options', array(
            'classname'                   => 'widget_display_stats',
            'description'                 => esc_html__( 'Some statistics from your forum.', 'bbpress' ),
            'customize_selective_refresh' => true
        ) );
     
        parent::__construct( false, esc_html__( '(bbPress) Statistics', 'bbpress' ), $widget_ops );