WP_Widget_Factory::WP_Widget_Factory()publicWP 2.8.0

Deprecated from version 4.3.0. It is no longer supported and can be removed in future releases. Use __construct() instead.

PHP4 constructor.

Method of the class: WP_Widget_Factory{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Widget_Factory = new WP_Widget_Factory();
$WP_Widget_Factory->WP_Widget_Factory();

Notes

Changelog

Since 2.8.0 Introduced.
Deprecated since 4.3.0 Use __construct() instead.

WP_Widget_Factory::WP_Widget_Factory() code WP 6.4.3

public function WP_Widget_Factory() {
	_deprecated_constructor( 'WP_Widget_Factory', '4.3.0' );
	self::__construct();
}