WP_Widget_Factory::get_widget_key( string $id_base )
Returns the registered key for the given widget type.
Parameters
- $id_base
-
(string) (Required) Widget type ID.
Return
(string)
Source
File: wp-includes/class-wp-widget-factory.php
public function get_widget_key( $id_base ) { foreach ( $this->widgets as $key => $widget_object ) { if ( $widget_object->id_base === $id_base ) { return $key; } } return ''; }
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_widget_factory/get_widget_key