W3cubDocs

/WordPress

WP_Widget::WP_Widget( string $id_base, string $name, array $widget_options = array(), array $control_options = array() )

This method has been deprecated. Use WP_Widget::__construct() instead.

PHP4 constructor.

Description

See also

Parameters

$id_base

(string) (Optional) Base ID for the widget, lowercase and unique. If left empty, a portion of the widget's class name will be used. Has to be unique.

$name

(string) (Optional) Name for the widget displayed on the configuration page.

$widget_options

(array) (Optional) Widget options. See wp_register_sidebar_widget() for information on accepted arguments.

Default value: array()

$control_options

(array) (Optional) Widget control options. See wp_register_widget_control() for information on accepted arguments.

Default value: array()

Source

File: wp-includes/class-wp-widget.php

public function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) {
		_deprecated_constructor( 'WP_Widget', '4.3.0', get_class( $this ) );
		WP_Widget::__construct( $id_base, $name, $widget_options, $control_options );
	}

Changelog

Version Description
4.3.0 Use __construct() instead.
2.8.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget/wp_widget