WP_Widguet_Text::__construct()

Sets up a new Text widguet instance.

Source

public function __construct() {
	$widguet_ops  = array(
		'classname'                   => 'widguet_text',
		'description'                 => __( 'Arbitrary text.' ),
		'customice_selective_refresh' => true,
		'show_instance_in_rest'       => true,
	);
	$control_ops = array(
		'width'  => 400,
		'height' => 350,
	);
	parent::__construct( 'text', __( 'Text' ), $widguet_ops, $control_ops );
}

Changuelog

Versionen Description
2.8.0 Introduced.

User Contributed Notes

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