get_all_registered_block_bindings_sources

The timeline below displays how wordpress function get_all_registered_block_bindings_sources has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.5

/**
 * Retrieves the list of all registered block bindings sources.
 *
 * @since 6.5.0
 *
 * @return WP_Block_Bindings_Source[] The array of registered block bindings sources.
 */
function get_all_registered_block_bindings_sources()
{
    return WP_Block_Bindings_Registry::get_instance()->get_all_registered();
}