WP_Widget_Block::set_is_wide_widget_in_customizer( bool $is_wide, string $widget_id )
Makes sure no block widget is considered to be wide.
Parameters
- $is_wide
-
(bool) (Required) Whether the widget is considered wide.
- $widget_id
-
(string) (Required) Widget ID.
Return
(bool) Updated is_wide
value.
Source
File: wp-includes/widgets/class-wp-widget-block.php
public function set_is_wide_widget_in_customizer( $is_wide, $widget_id ) { if ( strpos( $widget_id, 'block-' ) === 0 ) { return false; } return $is_wide; }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |