WP_Widget_Factory::get_widget_object( string $id_base )
Returns the registered WP_Widget object for the given widget type.
Parameters
- $id_base
-
(string) (Required) Widget type ID.
Return
(WP_Widget|null)
Source
File: wp-includes/class-wp-widget-factory.php
public function get_widget_object( $id_base ) { $key = $this->get_widget_key( $id_base ); if ( '' === $key ) { return null; } return $this->widgets[ $key ]; }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |