get_all_registered_block_bindings_sources()WP 6.5.0

Retrieves the list of all registered block bindings sources.

No Hooks.

Returns

WP_Block_Bindings_Source[]. The array of registered block bindings sources.

Usage

get_all_registered_block_bindings_sources();

Changelog

Since 6.5.0 Introduced.

get_all_registered_block_bindings_sources() code WP 6.8.1

function get_all_registered_block_bindings_sources() {
	return WP_Block_Bindings_Registry::get_instance()->get_all_registered();
}