WP_Block_Editor_Context::__construct( array $settings = array() )

Constructor.


Description

Populates optional properties for a given block editor context.


Top ↑

Parameters

$settings array Optional
The list of optional settings to expose in a given context.

Default: array()


Top ↑

Source

File: wp-includes/class-wp-block-editor-context.php. View all references

public function __construct( array $settings = array() ) {
	if ( isset( $settings['name'] ) ) {
		$this->name = $settings['name'];
	}
	if ( isset( $settings['post'] ) ) {
		$this->post = $settings['post'];
	}
}


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.