WP_Widget_Factory::register( string|WP_Widget $widget )

Registers a widget subclass.


Parameters

$widget string|WP_Widget Required
Either the name of a WP_Widget subclass or an instance of a WP_Widget subclass.

Top ↑

Source

File: wp-includes/class-wp-widget-factory.php. View all references

public function register( $widget ) {
	if ( $widget instanceof WP_Widget ) {
		$this->widgets[ spl_object_hash( $widget ) ] = $widget;
	} else {
		$this->widgets[ $widget ] = new $widget();
	}
}


Top ↑

Changelog

Changelog
Version Description
4.6.0 Updated the $widget parameter to also accept a WP_Widget instance object instead of simply a WP_Widget subclass name.
2.8.0 Introduced.

Top ↑

User Contributed Notes

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