bbp_replies_widget_options

bbp_replies_widget_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_replies_widget_options') is found 1 times:

  • /includes/common/widgets.php line 1054
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    *
     * @since 2.0.0 bbPress (r2653)
     */
    public function __construct() {
        $widget_ops = apply_filters( 'bbp_replies_widget_options', array(
            'classname'                   => 'widget_display_replies',
            'description'                 => esc_html__( 'A list of the most recent replies.', 'bbpress' ),
            'customize_selective_refresh' => true
        ) );
     
        parent::__construct( false, esc_html__( '(bbPress) Recent Replies', 'bbpress' ), $widget_ops );