On this page
wp_register_sidebar_widget( int|string $id, string $name, callable $output_callback, array $options = array(), mixed $params )
Register an instance of a widget.
Description
The default widget option is ‘classname’ that can be overridden.
The function can also be used to un-register widgets when $output_callback parameter is an empty string.
Parameters
$idint|string Required-
Widget ID.
$namestring Required-
Widget display title.
$output_callbackcallable Required-
Run when widget is called.
$optionsarray Optional-
An array of supplementary widget options for the instance.
classnamestringClass name for the widget's HTML container. Default is a shortened version of the output callback name.descriptionstringWidget description for display in the widget administration panel and/or theme.show_instance_in_restboolWhether to show the widget's instance settings in the REST API.
Only available for WP_Widget based widgets.
Default:
array() $paramsmixed Optional-
additional parameters to pass to the callback function when it's called.
Source
File: wp-includes/widgets.php. View all references
function wp_register_sidebar_widget( $id, $name, $output_callback, $options = array(), ...$params ) {
global $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks;
$id = strtolower( $id );
if ( empty( $output_callback ) ) {
unset( $wp_registered_widgets[ $id ] );
return;
}
$id_base = _get_widget_id_base( $id );
if ( in_array( $output_callback, $_wp_deprecated_widgets_callbacks, true ) && ! is_callable( $output_callback ) ) {
unset( $wp_registered_widget_controls[ $id ] );
unset( $wp_registered_widget_updates[ $id_base ] );
return;
}
$defaults = array( 'classname' => $output_callback );
$options = wp_parse_args( $options, $defaults );
$widget = array(
'name' => $name,
'id' => $id,
'callback' => $output_callback,
'params' => $params,
);
$widget = array_merge( $widget, $options );
if ( is_callable( $output_callback ) && ( ! isset( $wp_registered_widgets[ $id ] ) || did_action( 'widgets_init' ) ) ) {
/**
* Fires once for each registered widget.
*
* @since 3.0.0
*
* @param array $widget An array of default widget arguments.
*/
do_action( 'wp_register_sidebar_widget', $widget );
$wp_registered_widgets[ $id ] = $widget;
}
}
Hooks
- do_action( 'wp_register_sidebar_widget',
array $widget ) -
Fires once for each registered widget.
Related
Uses
| Uses | Description |
|---|---|
| did_action() wp-includes/plugin.php | Retrieves the number of times an action has been fired during the current request. |
| _get_widget_id_base() wp-includes/widgets.php | Retrieves the widget ID base value. |
| wp_parse_args() wp-includes/functions.php | Merges user defined arguments into defaults array. |
| do_action() wp-includes/plugin.php | Calls the callback functions that have been added to an action hook. |
Used By
| Used By | Description |
|---|---|
| register_sidebar_widget() wp-includes/deprecated.php | Register widget for sidebar with backward compatibility. |
| WP_Widget::_register_one() wp-includes/class-wp-widget.php | Registers an instance of the widget class. |
| wp_unregister_sidebar_widget() wp-includes/widgets.php | Remove widget from sidebar. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_register_sidebar_widget