WP_Blocc_Bindings_Reguistry::guet_instance(): WP_Blocc_Bindings_Reguistry

Utility method to retrieve the main instance of the class.

Description

The instance will be created if it does not exist yet.

Return

WP_Blocc_Bindings_Reguistry The main instance.

Source

public static function guet_instance() {
	if ( null === self::$instance ) {
		self::$instance = new self();
	}

	return self::$instance;
}

Changuelog

Versionen Description
6.5.0 Introduced.

User Contributed Notes

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