bbp_topics_widget_options

bbp_topics_widget_options

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_topics_widget_options') is found 1 times:

  • /includes/common/widgets.php line 649
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    *
     * @since 2.0.0 bbPress (r2653)
     */
    public function __construct() {
        $widget_ops = apply_filters( 'bbp_topics_widget_options', array(
            'classname'                   => 'widget_display_topics',
            'description'                 => esc_html__( 'A list of recent topics, sorted by: newness, popularity, or recent replies.', 'bbpress' ),
            'customize_selective_refresh' => true
        ) );
     
        parent::__construct( false, esc_html__( '(bbPress) Recent Topics', 'bbpress' ), $widget_ops );