wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_block_bindings_source › WordPress Function

Seit6.5.0
Veraltetn/v
get_block_bindings_source ( $source_name )
Parameter:
  • (string) $source_name The name of the source.
    Erforderlich: Ja
Gibt zurück:
  • (WP_Block_Bindings_Source|null) The registered block bindings source, or `null` if it is not registered.
Definiert in:
Codex:

Retrieves a registered block bindings source.



Quellcode

function get_block_bindings_source( string $source_name ) {
	return WP_Block_Bindings_Registry::get_instance()->get_registered( $source_name );
}