BBP_Login_Widget::__construct()

bbPress Login Widget


Description Description

Registers the login widget


Source Source

File: includes/common/widgets.php

	public function __construct() {
		$widget_ops = apply_filters( 'bbp_login_widget_options', array(
			'classname'                   => 'bbp_widget_login',
			'description'                 => esc_html__( 'A simple login form with optional links to sign-up and lost password pages.', 'bbpress' ),
			'customize_selective_refresh' => true
		) );

		parent::__construct( false, esc_html__( '(bbPress) Login Widget', 'bbpress' ), $widget_ops );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.