WP_Widget_Block::set_is_wide_widget_in_customizer( bool $is_wide, string $widget_id ): bool

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.

Top ↑

Return

bool Updated is_wide value.


Top ↑

Source

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

public function set_is_wide_widget_in_customizer( $is_wide, $widget_id ) {
	if ( str_starts_with( $widget_id, 'block-' ) ) {
		return false;
	}

	return $is_wide;
}

Top ↑

Changelog

Changelog
Version Description
5.8.0 Introduced.

Top ↑

User Contributed Notes

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